官术网_书友最值得收藏!

Some basic commands

Here a list of useful commands to start with R and RStudio:

  • help.start(): Starts the HTML version of R documentation
  • help(command)/??command/help.search(command): Displays the help related to a specific command
  • demo(): A user-friendly interface that runs some demonstrations of R scripts
  • library(help=package): Lists functions and datasets in a package
  • getwd(): Prints the directory that is currently active and working
  • ls(): Lists the objects that are used in the current session
  • setwd(mydirectory): Changes the working directory to mydirectory
  • options(): Displays current settings in the options
  • options(digits=5): You can print the specified digit as output
  • history(): Displays previous commands until the limit of 25
  • history(max.show=Inf): Displays all commands, irrespective of the limit
  • savehistory(file=“myfile”): Saves the history (default file is a .Rhistory file)
  • loadhistory(file=“myfile”): Recalls your command history
  • save.image(): Saves the current workspace to the .RData file that's present in that particular working directory
  • save(object list,file=“myfile.RData”): Saves objects into a specified file
  • load(“myfile.RData”): Loads a specific object from a specified file
  • q(): This will quit R for you with a prompt to save the current workspace
  • library(package): Loads a library that's specific to a project
  • install.package(package): Downloads and installs packages from CRAN-like repositories or even from local files
  • rm(object1, object2…): Removes objects

To execute a command in RStudio, it should be written in the console, and then you must press Enter.

In RStudio, it is possible to create interactive documents by combining lines of code and plain text. R Notebooks will be helpful in interacting with R directly, and so we can have a publishing-quality document produced as output when we use it.

To create a new notebook in RStudio, go to File, New File, and R Notebook. The default notebook will open, as shown in the following screenshot:

This notebook is a plain text file that has the .rmd extension. A file contains three types of content:

  • An (optional) YAML header surrounded by --- lines
  • R code chunks surrounded by ```r
  • Text mixed with simple text formatting

R code chunks allow for the execution of code and display the results in the same notebook. To execute a chunk, click the run button within the chunk or place the cursor inside it and press Ctrl + Shift + Enter. If you wish to insert a chunk button on the toolbar, press Ctrl + Alt + I.

While saving the current notebook, a code and output file in HTML format will be generated and will be saved with the notebook. To see what the HTML file looks like, you can either click the Preview button or you can use the shortcut Ctrl + Shift + K. You can find and download all the code of this book as a R Notebook, where you can execute all the code without writing it directly.

主站蜘蛛池模板: 华阴市| 瑞昌市| 南投市| 玉溪市| 靖江市| 胶南市| 普兰店市| 中卫市| 沁水县| 米脂县| 泽库县| 弋阳县| 新龙县| 梨树县| 珲春市| 江城| 耒阳市| 曲阜市| 巴楚县| 三门县| 彩票| 普陀区| 中牟县| 广安市| 西宁市| 九龙城区| 新泰市| 嘉兴市| 呼伦贝尔市| 顺义区| 霍城县| 图木舒克市| 蒲城县| 平舆县| 绥滨县| 新平| 衡水市| 隆安县| 长乐市| 大埔县| 苍溪县|