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

Setting up a New Project 

Let us now set up a new project that we will use throughout the book. We will create an R project, script, custom function, and save an image of the global environment. Follow the steps given below:

  1. Open RStudio.
  2. Navigate to File | New Project to start a new project:
    • Start with a new directory and save it in a place on your computer that makes sense to you.
    • Save the project with the name IntroToDSwRCourse.
  3. Check the working directory using the getwd() function and be sure it's the same folder you chose to save your project in.
  4. Start a new script. Save the script with the filename lesson1_exercise.R.
  5. Write a custom function, area_rectangle(), which calculates the area of a rectangle, with the following code:
area_rectangle <- function(length, width){
length * width
}
  1. Try out area_rectangle() with the following sets of lengths and widths:
    • 5, 10
    • 80, 7
    • 48209302930, 4

The code will be as follows:

area_rectangle(5, 10)
area_rectangle(80, 70)
area_rectangle(48209302930, 4)
  1. Save an image of the global environment for later; name the file introToDSwR.RData.

Output: The output you get after executing the getwd() function will be the folder on your computer that you have chosen to save your project in.

The area of the rectangle with different lengths will be provided as follows:

R and RStudio will be our main tools throughout this book for statistical analysis and programming. We've now seen how to create a new project, a new R script, and how to save a workspace image for use later.

主站蜘蛛池模板: 冷水江市| 香港 | 太仓市| 秦皇岛市| 曲靖市| 东山县| 大化| 新安县| 时尚| 新密市| 武城县| 喀喇沁旗| 孝感市| 涞水县| 宁安市| 邳州市| 昭平县| 石嘴山市| 汽车| 响水县| 仙桃市| 大方县| 铜川市| 永寿县| 灵山县| 南岸区| 南雄市| 衡阳县| 武宣县| 漳平市| 巴林右旗| 嘉义市| 康定县| 平武县| 永安市| 木兰县| 峨山| 南溪县| 拉萨市| 丰顺县| 湟中县|