From e16380a905a2cb729e52593aae2027b7d9a7a8e8 Mon Sep 17 00:00:00 2001 From: Irfan Nadiadi Date: Tue, 26 Aug 2014 14:47:13 -0600 Subject: [PATCH 01/12] Update README.md Added article on Big Data and completed Splunk checkpoints --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2593066..9cf451b 100644 --- a/README.md +++ b/README.md @@ -10,17 +10,17 @@ write-your-name # Show and tell (5 points) -[title-of-the-article](http://link-to-an-interesting-news-article-about-big-data) +[Science's Big Data Problem](http://www.wired.com/2014/08/sciences-big-data-problem/) # Splunk ## Checkpoint 1 (10 points) -![image](image.png?raw=true) +![image](http://i.imgur.com/qb3d4Gn.png) ## Checkpoint 2 (10 points) -![image](image.png?raw=true) +![image](http://i.imgur.com/QFnhXqt.png) # D3 From f8cfca6a4d6af7331b3105dffb577f6f48d5fe18 Mon Sep 17 00:00:00 2001 From: Irfan Nadiadi Date: Sun, 31 Aug 2014 12:23:33 -0600 Subject: [PATCH 02/12] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9cf451b..169de79 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ write-your-name ## Checkpoint 1 (10 points) -![image](image.png?raw=true) +![image](http://i.imgur.com/8YHNEHe.png) ## Checkpoint 2 (10 points) From e767aa850fb5b28789384db29a2b2636ef6a6c02 Mon Sep 17 00:00:00 2001 From: Irfan Nadiadi Date: Sun, 31 Aug 2014 12:50:16 -0600 Subject: [PATCH 03/12] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 169de79..3cd5ab8 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ write-your-name ## Checkpoint 2 (10 points) -![image](image.png?raw=true) +![image](http://i.imgur.com/eZ9neia.png) ## Study Questions (5 points x 3 = 15 points) From 6811067cc3d1018e9722de3d418fd12a4c560cfa Mon Sep 17 00:00:00 2001 From: Irfan Nadiadi Date: Sun, 31 Aug 2014 13:06:50 -0600 Subject: [PATCH 04/12] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3cd5ab8..4187e3b 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ write-your-name ### Q1. (5 points) -fill-in-your-answer +Each data point is now an object rather than a number and the data heading represents the key for each key:value pair in the object. As a result, changing the heading in the data will break the javascript code since the data is no longer mapped to the key it was expecting. Changing the heading 'value' to 'count' would require that you change all places in the code referencing 'd.value' to 'd.count'. ### Q2. (5 points) From 3729399d5cfe1e5d1b7178fe74efaa9678ee3f09 Mon Sep 17 00:00:00 2001 From: Irfan Nadiadi Date: Sun, 31 Aug 2014 13:18:11 -0600 Subject: [PATCH 05/12] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4187e3b..e489c93 100644 --- a/README.md +++ b/README.md @@ -40,11 +40,11 @@ Each data point is now an object rather than a number and the data heading repre ### Q2. (5 points) -fill-in-your-answer +One of the primary benefits of using D3 over other tools is that it allows for visualizations to be dynamic, where tools such as Excel create static graphs. This is powerful because, once a visualization for a dataset is created (assuming the data is hosted online), new data can be added to the dataset at a later date and the visualization will automatically reflect the change. ### Q3. (5 points) -fill-in-your-answer +The second argument of d3.tsv is a property accessor. In this example, we define a method type() to coerce the data type from the file we're reading to be a number since it's passed in as a string. ## Challenge 1 (5 points) From c42b913c25eaae627b4f09c25f540ecf579ce568 Mon Sep 17 00:00:00 2001 From: Irfan Nadiadi Date: Sun, 31 Aug 2014 13:24:04 -0600 Subject: [PATCH 06/12] Update README.md Updated Challenge 1 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e489c93..c8756d6 100644 --- a/README.md +++ b/README.md @@ -49,9 +49,9 @@ The second argument of d3.tsv is a property accessor. In this example, we define ## Challenge 1 (5 points) -![image](image.png?raw=true) +![image](http://i.imgur.com/BQOd4wQ.png) -[JSFiddle Link](http://jsfiddle.net/replace-this-path) +[JSFiddle Link]http://jsfiddle.net/Irfann/haad34wa/) ## Challenge 2 (5 points x 7 = 35 points) From b43f4c7824b88a7993e298a9faca7904e89ba744 Mon Sep 17 00:00:00 2001 From: Irfan Nadiadi Date: Sun, 31 Aug 2014 13:26:10 -0600 Subject: [PATCH 07/12] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c8756d6..6ac82a0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Name -write-your-name +Irfan Nadiadi # How many points have you earned? @@ -57,9 +57,9 @@ The second argument of d3.tsv is a property accessor. In this example, we define ### a. -![image](image.png?raw=true) +![image](http://imgur.com/c7ttWY1) -[JSFiddle Link](http://jsfiddle.net/replace-this-path) +[JSFiddle Link](http://jsfiddle.net/Irfann/haad34wa/1/) ### b. From 81af720d8604d73898f791e0b2f0b700d749e86b Mon Sep 17 00:00:00 2001 From: Irfan Nadiadi Date: Sun, 31 Aug 2014 13:31:05 -0600 Subject: [PATCH 08/12] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6ac82a0..fba1d30 100644 --- a/README.md +++ b/README.md @@ -57,15 +57,15 @@ The second argument of d3.tsv is a property accessor. In this example, we define ### a. -![image](http://imgur.com/c7ttWY1) +![image](http://i.imgur.com/c7ttWY1.png) [JSFiddle Link](http://jsfiddle.net/Irfann/haad34wa/1/) ### b. -![image](image.png?raw=true) +![image](http://i.imgur.com/a5LZ34b.png) -[JSFiddle Link](http://jsfiddle.net/replace-this-path) +[JSFiddle Link](http://jsfiddle.net/Irfann/haad34wa/2/) ### c. From 6e0cfd051bc9113f59c9228fd85332fed4c2afb9 Mon Sep 17 00:00:00 2001 From: Irfan Nadiadi Date: Sun, 31 Aug 2014 13:38:54 -0600 Subject: [PATCH 09/12] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fba1d30..a098492 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ The second argument of d3.tsv is a property accessor. In this example, we define ![image](http://i.imgur.com/BQOd4wQ.png) -[JSFiddle Link]http://jsfiddle.net/Irfann/haad34wa/) +[JSFiddle Link](http://jsfiddle.net/Irfann/haad34wa/) ## Challenge 2 (5 points x 7 = 35 points) @@ -69,9 +69,9 @@ The second argument of d3.tsv is a property accessor. In this example, we define ### c. -![image](image.png?raw=true) +![image](http://i.imgur.com/LjJNBE6.png) -[JSFiddle Link](http://jsfiddle.net/replace-this-path) +[JSFiddle Link](http://jsfiddle.net/Irfann/haad34wa/3/) ### d. From 6cf336ae2977d95dc3e21488aa3ec3dcb89a24d6 Mon Sep 17 00:00:00 2001 From: Irfan Nadiadi Date: Sun, 31 Aug 2014 13:56:05 -0600 Subject: [PATCH 10/12] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a098492..8bb3226 100644 --- a/README.md +++ b/README.md @@ -75,21 +75,21 @@ The second argument of d3.tsv is a property accessor. In this example, we define ### d. -![image](image.png?raw=true) +![image](http://i.imgur.com/PEcB4o9.png) -[JSFiddle Link](http://jsfiddle.net/replace-this-path) +[JSFiddle Link](http://jsfiddle.net/Irfann/haad34wa/4/) ### e. -![image](image.png?raw=true) +![image](http://i.imgur.com/OceYEYC.png) -[JSFiddle Link](http://jsfiddle.net/replace-this-path) +[JSFiddle Link](http://jsfiddle.net/Irfann/haad34wa/5/) ### f. -![image](image.png?raw=true) +![image](http://i.imgur.com/duxGNbD.png) -[JSFiddle Link](http://jsfiddle.net/replace-this-path) +[JSFiddle Link](http://jsfiddle.net/Irfann/haad34wa/6/) ### g. From 6dc41caa0485a51f663ecd4732d3d73cf29ac5a0 Mon Sep 17 00:00:00 2001 From: Irfan Nadiadi Date: Sun, 31 Aug 2014 14:03:46 -0600 Subject: [PATCH 11/12] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8bb3226..0f2357e 100644 --- a/README.md +++ b/README.md @@ -94,6 +94,6 @@ The second argument of d3.tsv is a property accessor. In this example, we define ### g. -![image](image.png?raw=true) +![image](http://i.imgur.com/clycMlJ.png) -[JSFiddle Link](http://jsfiddle.net/replace-this-path) +[JSFiddle Link](http://jsfiddle.net/Irfann/haad34wa/7/) From 4d3c0710ff670d10ba25958dc3f5d814bfbb528c Mon Sep 17 00:00:00 2001 From: Irfan Nadiadi Date: Sun, 31 Aug 2014 14:04:20 -0600 Subject: [PATCH 12/12] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f2357e..4744cea 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Irfan Nadiadi # How many points have you earned? -0/100 +100/100 (Make your own calculation and replace the number 0 with the points you think you've earned.)