This repository has been archived by the owner on May 6, 2022. It is now read-only.
forked from deniederhut/workshop_Rintensive
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git push origin masterMerge branch 'deniederhut-master'
- Loading branch information
Showing
10 changed files
with
686 additions
and
551 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Facetweet announcement | ||
|
||
Learn how to analyze your datasets in R! [insert link here](https://youtu.be/dQw4w9WgXcQ) | ||
|
||
# Information for calendar | ||
|
||
The workshop duration is 3hrs per class. | ||
|
||
# Descriptions for website | ||
|
||
## Header | ||
|
||
**title** : R for Data Science | ||
|
||
**description** : The R for Data Science workshop series is a four part course, designed to take novices in the R language for statistical computing and produce programmers who are competent in finding, displaying, analyzing, and publishing data in R. | ||
|
||
## Part 1 | ||
|
||
**subtitle** : Basics of R | ||
|
||
**description** : Students will understand the motivation behind object orientation, and how that relates to computation. Students will be able to perform basic functions in R necessary to use the software on their computers and conduct basic arithmetic. Students will understand data types and data structures, and why and how they are different from each other. | ||
|
||
**knowledge requirements** : [Programming Fun!damentals](https://github.com/dlab-berkeley/programming-fundamentals), or equivalent prior knowledge | ||
|
||
**tech requirements** : Laptop required; please install R version 3.2 or greater in advance (University laptops will need to have R installed by an administrator); the RStudio IDE is recommended but not required | ||
|
||
## Part 2 | ||
|
||
**subtitle** : Clean and tidy data | ||
|
||
**description** : Students will be introduced to DRY principles and best practices for sanitizing and tidying data. Students will learn what missingness is, and how best to accommodate missing data in their research designs. Students will be able to read in files from disk or a database, clean the data found within them, select specific data from them, and merge them with other datasets. | ||
|
||
**knowledge requirements** : R-for-Data-Science Part 1 or equivalent prior knowledge | ||
|
||
**tech requirements** : Laptop required; please install R version 3.2 or greater in advance (University laptops will need to have R installed by an administrator); the RStudio IDE is recommended but not required | ||
|
||
## Part 3 | ||
|
||
**subtitle** : Analyzing data | ||
|
||
**description** : Students will be introduced to the principles behind the grammar of graphics and the general linear model. Students will understand the implementation of plotting in R. Students will be able to explore, summarize, and analyze data using R's implementation of exploratory and inferential data analysis. | ||
|
||
**knowledge requirements** : R-for-Data-Science Part 2 or equivalent prior knowledge | ||
|
||
**tech requirements** : Laptop required; please install R version 3.2 or greater in advance (University laptops will need to have R installed by an administrator); the RStudio IDE is recommended but not required | ||
|
||
## Part 4 | ||
|
||
**subtitle** : Functions and packages | ||
|
||
**description** : Students will be introduced to the principles behind functional programming. Students will learn how to write and import functions, add looped and vectorized computation to their functions, and control the flow of data through a function. Students will understand the basics of name spaces, and how that relates to assigning values within functions. Students will see how to successfully package a function for CRAN. | ||
|
||
**knowledge requirements** : R-for-Data-Science Part 2 or equivalent prior knowledge | ||
|
||
**tech requirements** : Laptop required; please install R version 3.2 or greater in advance (University laptops will need to have R installed by an administrator); the RStudio IDE is recommended but not required |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Timestamp,How tall are you?,What department are you in?,Are you currently enrolled?,What is your birth order? | ||
7/25/2015 10:08:41,very,Geology ,Yes,1 | ||
7/25/2015 10:10:56,70,999,Yes,1 | ||
7/25/2015 10:11:20,5’9, geology,999,2 | ||
7/25/2015 10:11:20,5'9, geology,999,2 | ||
7/25/2015 10:11:25,2.1,goelogy,No,"9,000" | ||
7/25/2015 10:11:29,156,anthro,999,2 | ||
7/25/2015 10:11:29,156,anthro,999,2 |
Oops, something went wrong.