Giter Club home page Giter Club logo

Comments (24)

lupok2001 avatar lupok2001 commented on July 29, 2024 4

Use THIS: https://github.com/lupok2001/datasciencecoursera/blob/master/maacs.Rda

The variables are simulated. When run with the R Code from the ggplot2 lectures it gives slightly different graphs, but it works.

from modules.

duongtrung avatar duongtrung commented on July 29, 2024 2

try this code to save all columns from the original data set (https://github.com/jtleek/modules/blob/master/04_ExploratoryAnalysis/PlottingLattice/maacs_env.rds):
env <- readRDS("maacs_env.rds")
id <- 1:750
maacs <- data.frame(id, env)
save(maacs, file = "maacs.rda")

from modules.

juan637 avatar juan637 commented on July 29, 2024 2

Thanks TarekDib03, your contribution was very useful.

from modules.

stomioka avatar stomioka commented on July 29, 2024 1

Thanks @lupok2001. workes for me
download.file("https://github.com/lupok2001/datasciencecoursera/raw/master/maacs.Rda",
dest="./lecture/maacs.Rda",mode="wb")
load("./lecture/maacs.Rda")

from modules.

chajadan avatar chajadan commented on July 29, 2024

Just a second here that a link or reference to the data would be nice.

from modules.

chajadan avatar chajadan commented on July 29, 2024

Okay, here goes:

The data is in this RDS file: https://github.com/jtleek/modules/blob/master/04_ExploratoryAnalysis/PlottingLattice/maacs_env.rds

This file opens the data are draws a big set of panels of the level of allergen in the air for each subject over 5 visits (lines 201-204): https://github.com/jtleek/modules/blob/master/04_ExploratoryAnalysis/PlottingLattice/index.Rmd

from modules.

mlstats303 avatar mlstats303 commented on July 29, 2024

The MAACS dataset has no "eno" field as shown in ggplot2 slide (Roger Peng' Exploratory Data Analysis course). Have any ideas why ?

from modules.

TarekDib03 avatar TarekDib03 commented on July 29, 2024

You may load the whole data set with eno from here:

https://github.com/TarekDib03/ExploratoryDataAnalysisCoursera/blob/master/maacs.Rda

Let me know if you get any questions!

from modules.

mlstats303 avatar mlstats303 commented on July 29, 2024

Thanks TarekDib03. It's working now.

from modules.

starry0731 avatar starry0731 commented on July 29, 2024

Thanks TareDib03!

from modules.

MattLWhitaker avatar MattLWhitaker commented on July 29, 2024

Thanks TarekDib03.

from modules.

TarekDib03 avatar TarekDib03 commented on July 29, 2024

Anytime guys! I am glad I was able to help.

On Wed, Aug 13, 2014 at 5:10 PM, Matt Whitaker [email protected]
wrote:

Thanks TarekDib03.


Reply to this email directly or view it on GitHub
#82 (comment).

from modules.

RyanLeiTaiwan avatar RyanLeiTaiwan commented on July 29, 2024

I appreciate your upload. This will help me practice with the ggplot2 videos.

from modules.

SidharthaRay avatar SidharthaRay commented on July 29, 2024

In the dataset I'm not finding logpm25, NocturnalSympt and also few other attributes..

from modules.

Tetlanesh avatar Tetlanesh commented on July 29, 2024

I also want to point out that data used in lecture have no corresponding dataset we can use, and data set prowided above does not contain some of the columns that where shown in lecture

from modules.

majidyousuf avatar majidyousuf commented on July 29, 2024

Jtleek has used maacs dataset for ggplot2 example.. but above link do not have attributes used in it. attributes like bmicat, NocturnalSympt, logpm25.. do anyone have any idead wr to find it..

from modules.

bensooraj avatar bensooraj commented on July 29, 2024

Do we have any updates here?

from modules.

duongtrung avatar duongtrung commented on July 29, 2024

There are some columns missing in the maacs data set, more specifically those needed for 3 - 7 - ggplot2(part 5)[8_11].mp4 video.

I found the data set in here: https://github.com/TarekDib03/ExploratoryDataAnalysisCoursera/blob/master/maacs.html
But I cannot load the data set with the error message: "more columns than column names"

from modules.

zhujianwei31415 avatar zhujianwei31415 commented on July 29, 2024

Jtleek has used maacs dataset for ggplot2 example.. but above link do not have all attributes used in it. For example, attributes like bmicat, NocturnalSympt, logpm25, and so on. Does anyone have chance to get it?

from modules.

arevelio avatar arevelio commented on July 29, 2024

Best as I can tell, you can't get the dataset that contains bmicat and NocturnalSympt for this part of of the lecture. I found the quote below from http://lib.psylab.info/files/Peng2015b.pdf

"NOTE: Because the individual-level data for this study are protected by various U.S.
privacy laws, we cannot make those data available. For the purposes of this chapter, we
have simulated data that share many of the same features of the original data, but do not
contain any of the actual measurements or values contained in the original dataset."

If someone finds this dataset, I'd love to recreate the plots in the second part of the lecture.

from modules.

anatur avatar anatur commented on July 29, 2024

thanks lupok2001! it worked for me

from modules.

XeenChaos avatar XeenChaos commented on July 29, 2024

Thank you guys, is a great help to find the data here.....Otherwise cannot practice. Cheers

from modules.

Francisco-Marquez avatar Francisco-Marquez commented on July 29, 2024

Thank you @lupok2001 , it works well for me!

from modules.

dmontigny avatar dmontigny commented on July 29, 2024

I loaded it with these steps:
url = "https://raw.githubusercontent.com/lejarx/MAACS-dataset/master/maacs.rda" destfile = tempfile(fileext = ".rda") download.file(url, destfile, method = 'libcurl', mode = "wb", quiet=TRUE) load(destfile) unlink(destfile)

from modules.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.