HomeGroupsTalkMoreZeitgeist
Search Site
This site uses cookies to deliver our services, improve performance, for analytics, and (if not signed in) for advertising. By using LibraryThing you acknowledge that you have read and understand our Terms of Service and Privacy Policy. Your use of the site and services is subject to these policies and terms.

Results from Google Books

Click on a thumbnail to go to Google Books.

R for Data Science: Import, Tidy, Transform,…
Loading...

R for Data Science: Import, Tidy, Transform, Visualize, and Model Data (original 2017; edition 2017)

by Hadley Wickham (Author)

MembersReviewsPopularityAverage ratingConversations
2185123,972 (4.61)None
Learn how to use R to turn raw data into insight, knowledge, and understanding. This book introduces you to R, RStudio, and the tidyverse, a collection of R packages designed to work together to make data science fast, fluent, and fun. Suitable for readers with no previous programming experience, R for Data Science is designed to get you doing data science as quickly as possible. Authors Hadley Wickham and Garrett Grolemund guide you through the steps of importing, wrangling, exploring, and modeling your data and communicating the results. You ?ll get a complete, big-picture understanding of the data science cycle, along with basic tools you need to manage the details. Each section of the book is paired with exercises to help you practice what you ?ve learned along the way. You ?ll learn how to: Wrangle ?transform your datasets into a form convenient for analysis Program ?learn powerful R tools for solving data problems with greater clarity and ease Explore ?examine your data, generate hypotheses, and quickly test them Model ?provide a low-dimensional summary that captures true "signals" in your dataset Communicate ?learn R Markdown for integrating prose, code, and results… (more)
Member:yenzie
Title:R for Data Science: Import, Tidy, Transform, Visualize, and Model Data
Authors:Hadley Wickham (Author)
Info:O'Reilly Media (2017), Edition: 1, 522 pages
Collections:programming, Your library, Currently reading
Rating:
Tags:None

Work Information

R for Data Science: Import, Tidy, Transform, Visualize, and Model Data by Hadley Wickham (2017)

None
Loading...

Sign up for LibraryThing to find out whether you'll like this book.

No current Talk conversations about this book.

Showing 5 of 5
Like a week-long workshop with the authors, this book presents data analysis in terms of the R packages in the tidyverse. I don't think you can read it and fail to learn a lot. It has an especially nice organized approach to data import and non-tidy data. I think I would recommend it to almost anyone who does some data analysis. My only caveat would be that although you could start learning R with this book, it might be a difficult and non-traditional path for some complete beginners. ( )
  markm2315 | Jul 1, 2023 |
If the above quote is the mission of this book, consider the task accomplished. Where most books in computer science fall down in trying to be cute while communicating an educational message, this book addresses the task of education about R squarely, and it does so in a manner that engages the mind with interesting problems.

Usually, I skip the exercises sections of most computer books because, well, they offer challenges that are underwhelming. Recall is all that is required to answer them. Usually, I can figure them out in the confines of my mind so that I don't have to waste my time looking up the answers or coding example code to check whether I'm right or where I err.

Not so for Hadley Wickham. Many of his questions were awakened my curiosity and had me applying me new knowledge in R Studio immediately. In fact, the only way I could answer my burning curiosity was to write code in order to test my hypotheses.

Rare is the computer book that is a page turner. This book qualifies as just that if one has the aptitude in statistics to embrace the challenges. R is an ideal language to handles these challenges in statistics, and Wickham and Grodemund fill the role of ideal apostles/evangelists to share this free fruit.

The fun part about R is that it is free, creative, and well-supplied with packages to solve interesting statistical problems. This book carries that message squarely to my lap (and then to my brain) in an engaging manner.
( )
1 vote scottjpearson | Jan 25, 2020 |
if ur gonna use R, its probably the best resource out there, aside from wickham's advanced R guide; but the language is so antiquated and outdated, with so many issues in its fundamental data structures, that its frustrating to pretend it can b an elegant front end for research development; it seems like wickham's energy would b better directed towards developing an R2 (couldn't u just ship a wrapper to make R1 packages compatible?) rather than trying to patch R as it is w more and more packages to try to smooth things over ( )
  sashame | Jun 8, 2019 |
This is one of the best O'Reilly books I've read. For context, I'm a graphics programmer that fell into sci vis, e.g., visualizing fluid simualtions, and is now pivoting into info vis.

Part I: Explore gives an overview of using R+ggplot2+some tidyverse to do exploratory data analysis. It is one of the best intro overview dives I've come across for any type of programming. Most dives of this sort have at least one or two gaps in material or unclear motivation or try to do too much. This was perfectly crafted to lead someone into the tidyverse.

Part II: Wrangle is a more thorough look at the tidyverse. I recommend supplementing this by reading Wickham's original paper on tidy data.

Part III: Program was a little tedious because I already have decades of programming experience, though the coverage of purrr is interesting.

Part IV: Model covers building linear and non- models. I don't have a statistics background but even so found this easy to follow and very clear.

Part V: Communicate is a smorgasbord of R Markdown and options building on top of it. I thought this section had a bit of a conflicting message to end on, because after 400 some pages of doing work in RStudio with .R script files, the authors all of a sudden seem to say to forget all that and do everything as R Markdown. Which is fine, but if that's their recommendation I think introducing that earlier would have been better.

There are some copy editing issues, luckily Wickham has an updated online edition with corrections. Some of the exercises weren't entirely clear as to intent, but that could entirely be do to my lacking stats background. (Plenty of people have posted solutions online if you get stuck.) ( )
  encephalical | Mar 1, 2019 |
El mejor libro para ciencia de datos por el Wickham, creador de todo un nuevo lenguaje que permite remodelar, visualizar y resumir datos para extraer de ellos información.

He tomado varios cursos de Grolemund y destaca que va de lo simple a lo complejo. Por ejemplo, el curso de HarvardX comienza con...FUNCIONES. Hay algunos que ocupamos R para procesar cantidades pequeñas de datos, como en estudios epidemiológicos o clínicos, en comparación a quienes procesan datos de Facebook o Google, que son TB de información. En este libro las funciones vienen en la parte 15. O sea, este libro va enseñando realmente de menos a más, comenzando con lo fácil y simple para llegar a lo difícil y complejo, pero usualmente más útil.

Por ejemplo, en R Base ordenar sería algo como

df[order(df$recuento,decreasing=TRUE), ]

mientras que con dplyr sería
arrange(df, desc(recuento))

lo que un humano puede leer: ordenar (la base de datos, en forma descendente mediante la variable Count.
El hecho que ahora pueda prescindir de los [] permite agilizar mucho cualquier escritura de código.

La calidad del libro es perfecta, con varios colores que resaltan distintas partes de los códigos para indicar como funcionan.

Es un libro indispensable para cualquiera que tenga que analizar datos. ( )
  sergiouribe | Oct 29, 2017 |
Showing 5 of 5
no reviews | add a review
You must log in to edit Common Knowledge data.
For more help see the Common Knowledge help page.
Canonical title
Original title
Alternative titles
Original publication date
People/Characters
Important places
Important events
Related movies
Epigraph
Dedication
First words
Quotations
Last words
Disambiguation notice
Publisher's editors
Blurbers
Original language
Information from the German Common Knowledge. Edit to localize it to your language.
Canonical DDC/MDS
Canonical LCC

References to this work on external resources.

Wikipedia in English

None

Learn how to use R to turn raw data into insight, knowledge, and understanding. This book introduces you to R, RStudio, and the tidyverse, a collection of R packages designed to work together to make data science fast, fluent, and fun. Suitable for readers with no previous programming experience, R for Data Science is designed to get you doing data science as quickly as possible. Authors Hadley Wickham and Garrett Grolemund guide you through the steps of importing, wrangling, exploring, and modeling your data and communicating the results. You ?ll get a complete, big-picture understanding of the data science cycle, along with basic tools you need to manage the details. Each section of the book is paired with exercises to help you practice what you ?ve learned along the way. You ?ll learn how to: Wrangle ?transform your datasets into a form convenient for analysis Program ?learn powerful R tools for solving data problems with greater clarity and ease Explore ?examine your data, generate hypotheses, and quickly test them Model ?provide a low-dimensional summary that captures true "signals" in your dataset Communicate ?learn R Markdown for integrating prose, code, and results

No library descriptions found.

Book description
Haiku summary

Current Discussions

None

Popular covers

Quick Links

Rating

Average: (4.61)
0.5
1
1.5
2
2.5
3 1
3.5
4 3
4.5 1
5 9

Is this you?

Become a LibraryThing Author.

 

About | Contact | Privacy/Terms | Help/FAQs | Blog | Store | APIs | TinyCat | Legacy Libraries | Early Reviewers | Common Knowledge | 204,827,947 books! | Top bar: Always visible