RStudio Tour

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RStudio Tour相关的知识,希望对你有一定的参考价值。

参考技术A 安装RStudio之后,让我们对她进一步的熟悉。

1. 象限

RStudio有四个象限,每一个象限代表不同的功能,当你第一次打开RStudio, 你应该看到如下界面:

2. RStudio的主界面

你可能会错过左上象限,取而代之的是屏幕左侧只有一个区域,控制台——如果是这种情况,转到File> New File> R Script;现在它应该如下图所示了。您可以通过将鼠标悬停在象限之间的空间上并单击拖动分隔符来调整各部分的大小,从而更改每个象限的大小。我们将逐一介绍每个区域,并描述它们的一些主要功能。不可能涵盖RStudio可以做的所有事情,所以我们建议您也自己去探索RStudio!

3. 菜单栏

菜单栏横跨屏幕顶部,应该有两行。第一行应该是一个相当标准的菜单,从File和Edit开始。下面是一排图标,它们是您将经常使用的功能的快捷方式。

4. 主菜单栏中的常用选项

首先,让我们浏览一下您将使用的菜单栏的主要部分。第一个是File菜单。在这里,我们可以打开新建或已保存的文件,打开新建或已保存的项目(我们以后会有关于R项目的更多课程,请继续关注!),保存当前的文档或关闭RStudio。如果您将鼠标移到新文件上,将出现一个新菜单,提示您可以使用的各种文件格式。R Script和R Markdown文件是最常见的文件类型,但你也可以生成R笔记本、网络应用、网站或幻灯片演示。如果您单击其中任何一个,Source象限中的一个新选项卡将打开。

5. 会话菜单

会话菜单有一些特定于R的功能,在这些功能中,你可以重启、中断或终止R——如果R不正常或卡住了,你想停止它正在做的事情并从头开始,这些功能会很有帮助。

6. 工具菜单

工具菜单是一个宝库的功能,供您探索。您可以在这里安装新软件包、设置版本控制软件、设置RStudio外观和功能的选项和首选项。现在,我们将不讨论这个问题,但是当您对RStudio有了更多的经验之后,一定要自己探索这些菜单,看看可以修改什么来最适合您的偏好。

7. 控制台

您应该对这个区域很熟悉——当您打开RGui时,会看到控制台。在这里输入和执行命令,并显示所述命令的输出。

来执行你的第一道命令,>1+5,然后回车键,你可以看到输出结果6

8. 环境/历史

单击“Titanic”行上的任何地方,Source象限上将出现一个新的选项卡,显示您创建的矩阵。在R中创建的任何数据格式或矩阵都可以在RStudio中以这种方式查看。

9. 文件、图形、包、帮助和查看器

我们将看到的最后一个区域位于RStudio窗口的右下角。在这个象限中,顶部有五个选项卡:文件、图形、包、帮助和查看器。

在文件中,您可以看到当前工作目录中的所有文件。如果这不是您希望保存或检索文件的地方,您还可以使用最右边的省略号在此选项卡中更改当前工作目录,找到所需的文件夹,然后在“More”齿轮下,将这个新文件夹设置为工作目录。

10. 当你需要查看包的功能和使用方法,帮助键是一个不错的选择。

后台回复RStudio,会提供一份RStudio快捷键的详细目录。

微信扫一扫

关注该公众号

Tour UVA - 1347

John Doe, a skilled pilot, enjoys traveling. While on vacation, he rents a small plane and starts visiting

beautiful places. To save money, John must determine the shortest closed tour that connects his

destinations. Each destination is represented by a point in the plane pi =< xi

, yi >. John uses the

following strategy: he starts from the leftmost point, then he goes strictly left to right to the rightmost

point, and then he goes strictly right back to the starting point. It is known that the points have

distinct x-coordinates.

Write a program that, given a set of n points in the plane, computes the shortest closed tour that

connects the points according to John’s strategy.

Input

The program input is from a text file. Each data set in the file stands for a particular set of points. For

each set of points the data set contains the number of points, and the point coordinates in ascending

order of the x coordinate. White spaces can occur freely in input. The input data are correct.

Output

For each set of data, your program should print the result to the standard output from the beginning

of a line. The tour length, a floating-point number with two fractional digits, represents the result.

Note: An input/output sample is in the table below. Here there are two data sets. The first one

contains 3 points specified by their x and y coordinates. The second point, for example, has the x

coordinate 2, and the y coordinate 3. The result for each data set is the tour length, (6.47 for the first

data set in the given example).

Sample Input

3

1 1

2 3

3 1

4

1 1

2 3

3 1

4 2

Sample Output

6.47

7.89

 

 

这题就是DP,思路什么的书上说的很清楚了

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<cmath>
 5 using namespace std;
 6 int n;
 7 struct node
 8 {
 9     double x,y;
10 }a[10001];
11 double dis[1001][1001];
12 double dp[1001][1001];
13 int main()
14 {
15     while(scanf("%d",&n)==1)
16     {    
17         for(int i=1;i<=n;i++)
18         {
19             scanf("%lf%lf",&a[i].x,&a[i].y);
20             for(int j=i-1;j>=1;j--)
21             dis[j][i]=sqrt(((a[i].x-a[j].x)*(a[i].x-a[j].x))+((a[i].y-a[j].y)*(a[i].y-a[j].y)));
22         }
23         //pre();
24         for(int i=n-2;i>=1;i--)
25             dp[n-1][i]=dis[n-1][n]+dis[i][n];
26         for(int i=n-2;i>=2;i--)
27             for(int j=i-1;j>=1;j--)
28             dp[i][j]=min(dp[i+1][j]+dis[i][i+1],dp[i+1][i]+dis[j][i+1]);
29         printf("%.2lf\n",dp[2][1]+dis[1][2]);
30     }
31     return 0;
32 }

 

以上是关于RStudio Tour的主要内容,如果未能解决你的问题,请参考以下文章

在虚拟机上使用 RStudio 和在 RServer 上使用 Rstudio 的区别

rstudio原来下载到了C盘,更新版本后在了D盘能用吗,需要重新下载吗

rstudio如何加载函数?

rstudio中没有iv.mult函数怎么办

rstudio怎么删除最后几行数据

r [连接到Rstudio中的SQLite数据库] #R #SQLite #RStudio