Start here to learn R
r-exercises.com
Start here to learn R
1–10 of 45 posts
Re: Start here to learn R
#2I recommend going straight to the Hadleyverse packages for the common use cases, and read the vignettes for the common use cases: readr for reading files, dplyr for manipulating data, ggplot2 for plotting (the most important package!), and tidyr for reshaping data into a ggplot2-friendly long form.
Wickham himself has a very beginner-friendly, free book for learn R using his packages: http://r4ds.had.co.nz/index.html (far better than any tutorial I could write)
Re: Start here to learn R
#3All the tutorials involve using base R packages. While OK for a tutorial, this is not reflective for real-world data analysis both in performance and usability, a lesson I have learned the hard way. (After using it for three semesters in college, I almost quit R completely in frustration) I recommend going straight to the Hadleyverse packages for the common use cases, and read the vignettes for the common use cases:…
Re: Start here to learn R
#4Where is this? I couldn't see anything with the same name.
The first thing in the list: http://r-exercises.com/2015/10/09/vector-exercises/ starts by telling me I need to have read something else, which is a chapter in a long PDF.
I applaud the effort, but this feels confusing and I'm worried about people being discouraged right as they start.
Re: Start here to learn R
#5All the tutorials involve using base R packages. While OK for a tutorial, this is not reflective for real-world data analysis both in performance and usability, a lesson I have learned the hard way. (After using it for three semesters in college, I almost quit R completely in frustration) I recommend going straight to the Hadleyverse packages for the common use cases, and read the vignettes for the common use cases:…
Re: Start here to learn R
#6Some people actually need to learn statistics while they are learning to express those concepts.
Some people need to learn idiomatic R. I really didn't think of R as very functional till I took Peng's (excellent) Coursera course.
Some people need to get a sense of the libraries available.
This is an intro to get some practice in the the classical, original purpose for S, Splus and R: linear algebra operations in R.
Re: Start here to learn R
#7All the tutorials involve using base R packages. While OK for a tutorial, this is not reflective for real-world data analysis both in performance and usability, a lesson I have learned the hard way. (After using it for three semesters in college, I almost quit R completely in frustration) I recommend going straight to the Hadleyverse packages for the common use cases, and read the vignettes for the common use cases:…
Re: Start here to learn R
#8All the tutorials involve using base R packages. While OK for a tutorial, this is not reflective for real-world data analysis both in performance and usability, a lesson I have learned the hard way. (After using it for three semesters in college, I almost quit R completely in frustration) I recommend going straight to the Hadleyverse packages for the common use cases, and read the vignettes for the common use cases:…
Re: Start here to learn R
#9All the tutorials involve using base R packages. While OK for a tutorial, this is not reflective for real-world data analysis both in performance and usability, a lesson I have learned the hard way. (After using it for three semesters in college, I almost quit R completely in frustration) I recommend going straight to the Hadleyverse packages for the common use cases, and read the vignettes for the common use cases:…
Thanks for mentioning this. I have used dplyr, ggplot2, and a little of some others but I had no idea about Hadley and that they all worked together.