Module # 1: Assignment #1: Getting Started with R Programming Your first assignment
- In your blog, write a 2–3 paragraph report describing:
- Any issues you encountered during installation.
- How you resolved them (if applicable).
- Your system details (OS version, R version, RStudio version).
I installed R and RStudio a little over a year ago without any issues, and I am currently using version 2024.12.0 Build 467. I have successfully used RStudio in multiple previous classes and have not experienced any problems while using the software.
The PC I use for RStudio runs Windows 11 Home, version 24H2, and has a Ryzen 9 5900X CPU, a 4070ti Super GPU, and 32GB of DDR4 RAM. These specs have allowed RStudio to run smoothly and reliably for my coursework.
- On your blog, post one paragraph summarizing:
- What an R vector is.
- Why vectors are fundamental to data analysis in R.
An R vector is the most basic data structure in R, representing an ordered collection of elements of the same data type, such as numeric, character, or logical values, that can be accessed and manipulated together. Vectors are fundamental to data analysis in R because nearly all data objects, including data frames, matrices, and lists, are built from vectors, and most R operations are vectorized, allowing calculations to be performed efficiently on entire datasets without explicit loops. This design makes data manipulation, statistical analysis, and visualization faster, clearer, and more expressive, which is why mastering vectors is essential for anyone working with data in R.
Comments
Post a Comment