Assignment #1: Getting Started with R Programming
Any issues you encountered during installation? I already had R installed into my computer due to taking classes in the past where R was required for the class. I never uninstalled it since I was going to be taking more programming classes that required it. The version that I have was the version that professors tell us to install in the introduction class of R programming.
But I did not have any issues installing it.
How you resolved them (if applicable)? I had not issue with it already on my computer. So, I didn't have to resolve anything.
Your system details (OS version, R version, RStudio version)? I am not very sure which version I have. But I think I have the RStudio version through posit. When I did install R, I did go through posit website that was given by my professor at the time and that is how I installed the version that I have now
What an R vector is? Why vectors are fundamental to data analysis in R?
R vector is the most basic data structure in R that consists of collection of elements that are ordered by numeric, character, or logical values. The vectors are fundamental to data analysis in R due to the data frames, matrices, and lists that are built on top of each other. It allows R to perform efficiently with calculations and transformation that are applied to the entire datasets all at once without any loops. This makes data manipulation easier, faster, cleaner, and more expressive. That is why understanding vectors is important when it comes to working with data in R.
.png)
Comments
Post a Comment