ncarchedi / swirl_OLD

We've moved! See README below for more info.
http://swirlstats.com
47 stars 28 forks source link

Viewing the contents and description of a module/course #8

Closed ckoch786 closed 10 years ago

ckoch786 commented 10 years ago

Is there a way to view the contents of a module/course? Is there a way to view a description for a module/course?

WilCrofter commented 10 years ago
On 10/2/2013 11:32 PM, Cory Koch wrote:

  Is there a way to view the contents of a module/course?
    Is there a way to view a description for a module/course?
  —
    Reply to this email directly or view it on
      GitHub.

Yes. In an R shell, load the *.rda file associated with the course.
For instance, if you have the project checked out from GitHub:
  > load("~/GIT_projects/swirl/inst/Courses/Data_Analysis/Module2.rda")

ls() [1] "mod" "mod.info"

Alternatively, you can download the appropriate *.rda file from the
web. For instance Module 2 of Data Analysis is on Nick's page here:
https://github.com/ncarchedi/swirl/tree/master/inst/Courses/Data_Analysis
 mod and mod.info are standard R data frames. Function View(),
package utils, will display them in spreadsheet form, e.g.,
  > View(mod)

to see all the questions and answers. Course description is in
mod.info
ncarchedi commented 10 years ago

@ckoch786 Please confirm you are able to access the content per instructions above.

Thanks, Nick

ckoch786 commented 10 years ago

@WilCrofter and @ncarchedi yes I as able to access the content per the instructions above.

Thanks,

Cory