Path: blob/master/2019-fall/slides/02_tutorial_class_activity.ipynb
2051 views
Kernel: R
DSCI 100: Introduction to Data Science
Tutorial 2 - Getting data into R: Class activity
2019-09-17
Class Activity
Create a new R Jupyter notebook.
Connect to the
kickstarter
database (same database as question 3.0 from tutorial). Remember to load the packages necessary to do so.
Use the
projects
table from thekickstarter
database to answer the following question: what is the project URL of the project from Great Britain (GB
) with the greatest total amount pledged.
You must use all of the following functions once each: arrange()
, collect()
, filter()
, select()
, and tail()
.
Post your code and final answer (project URL) to Piazza.
Solution
In [ ]:
Question:
Should we use
collect()
before or after working the data into our desired form? Does it matter?