【扫盲】Getting into project of R

⭐️ what is an r project include in r studio?

An R project in RStudio is a self-contained directory that contains all the files and resources associated with a specific R project. This includes the R code files, data files, output files, and any additional packages or libraries needed for the project. RStudio automatically creates a new R project for each project you start, and allows you to easily switch between different projects within the RStudio interface. R projects in RStudio also provide features such as version control and collaboration tools, making it easier to work on and manage your R projects.

⭐️ where is the automatically created r project locate?

When you create a new R project in RStudio, it is automatically saved in a directory on your computer. By default, RStudio saves the project in a directory called “RProjects” in your home directory. However, you can specify a different location for your R project by choosing “New Project” from the File menu, and then selecting “New Directory” and specifying a location for your project. You can also move an existing R project to a different location by choosing “Close Project” from the File menu, and then moving the project directory to the new location.

⭐️ compare r with python

🌠 r

Here is a simple R demo code that creates a vector of numbers, calculates the sum and mean of the vector, and prints the results to the console:

# create a vector of numbers
vec <- c(1, 2, 3, 4, 5)

# calculate the sum and mean of the vector
vec_sum <- sum(vec)
vec_mean <- mean(vec)

# print the results to the console
print(paste("The sum of the vector is", vec_sum))
print(paste("The mean of the vector is", vec_mean))

This code creates a vector called vec containing the numbers 1 through 5, calculates the sum and mean of the vector using the sum and mean functions, and then prints the results to the console using the print function and the paste function to concatenate strings and values.

🌠 python

Here is a simple Python code that creates a list of numbers, calculates the sum and mean of the list, and prints the results to the console:

# create a list of numbers
vec = [1, 2, 3, 4, 5]

# calculate the sum and mean of the list
vec_sum = sum(vec)
vec_mean = sum(vec) / len(vec)

# print the results to the console
print("The sum of the list is", vec_sum)
print("The mean of the list is", vec_mean)

This code creates a list called vec containing the numbers 1 through 5, calculates the sum and mean of the list using the sum and len functions, and then prints the results to the console using the print function to concatenate strings and values.

🌠 what is the difference between the two code?

There are a few differences between the R code and the Python code that I gave you. Some of the main differences include:

  1. In R, a vector is a one-dimensional array that can contain numeric, character, or logical values. In Python, a list is a similar data structure that can contain any type of value.
  2. In R, the c function is used to create vectors. In Python, the square brackets [] are used to create lists.
  3. In R, the sum and mean functions are used to calculate the sum and mean of a vector. In Python, the sum and len functions are used to calculate the sum and length of a list, and the mean is calculated by dividing the sum by the length.
  4. In R, the print function is used to print values to the console. In Python, the print function is used in a similar way, but it also requires parentheses around the values to be printed.

⭐️ What the difference between = and <-

在这里插入图片描述

⭐️补充资料

A compact course to take you from zero to R-hero!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

白拾ShiroX

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值