Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Miscellaneous updates #14

Merged
merged 4 commits into from
Mar 5, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion 02_RProgramming/announcements.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ Roger Peng and the Data Science Team

We have now entered the third week of R Programming which also marks the halfway point. The lectures this week cover loop functions and the debugging tools in R. These aspects of R make R useful for both interactive work and writing longer code, and so they are commonly used in practice.

The Programming Assignment is challenging and so I encourage you to start early if you have the chance. It requires you to explore some of the more interesting aspects of the R language, including taking advantage of the scoping rules to implement state preservation in R objects. The Programming Assignment this week uses a submit script that you have to download from the Coursera web site.
The Programming Assignment is challenging and so I encourage you to start early if you have the chance. It requires you to explore some of the more interesting aspects of the R language, including taking advantage of the scoping rules to implement state preservation in R objects.

Note that the programming assignment this week is implemented as a <b>Peer Assessment</b> so you will not see it listed under the Programming Assignments section.

Best of luck!

Expand Down
2 changes: 1 addition & 1 deletion 04_ExploratoryAnalysis/CaseStudy/script.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ mean(is.na(x1)) ## Are missing values important here?

## Make a boxplot of both 1999 and 2012
boxplot(x0, x1)
boxplot(log(x0), log(x1))
boxplot(log10(x0), log10(x1))

## Check negative values in 'x1'
summary(x1)
Expand Down
Binary file not shown.