├── LICENSE.md ├── README.md ├── d3.v3.js ├── module1 ├── colourlovers │ ├── CITATION.md │ ├── top_colors.json │ ├── top_colors.xml │ ├── top_palettes.json │ └── top_palettes.xml ├── test_data.csv ├── test_data.json ├── test_data.xml └── worldbank │ ├── CITATION.md │ ├── sp.pop.totl_Indicator_en_csv_v2.csv │ └── sp.pop.totl_Indicator_en_xml_v2.xml ├── module2 ├── 1_html.html ├── 2_css.html ├── 3_svg.html ├── 4_javascript.html ├── 5_d3_with_html.html ├── 6_d3_with_svg.html ├── 7_csv.html ├── CITATION.md └── betterlifeindex.csv ├── module3 ├── 1_append.html ├── 2_creating_from_data.html ├── 3_svg_elements_from_data.html ├── 4_setting_attributes.html ├── 5_sorting.html ├── 6_titles.html ├── CITATION.md └── betterlifeindex.csv ├── module4 ├── 1_scaled_widths.html ├── 2_dynamic_domain.html ├── 3_scaled_heights.html ├── 4_scaled_heights_spaced.html ├── 5_padding.html ├── 6_horizontal_axis.html ├── 7_vertical_axis.html ├── 8_labels.html ├── 9_cleaner.html ├── CITATION.md └── betterlifeindex.csv ├── module5 ├── 1_scatterplot.html ├── 2_formatting_ticks.html ├── 3_transitions.html ├── 4_delay.html ├── CITATION.md └── betterlifeindex.csv └── module6 ├── 10_opacity.html ├── 1_dates.html ├── 2_plot.html ├── 3_line.html ├── 4_two_lines.html ├── 5_multiple_lines.html ├── 6_area.html ├── 7_two_areas.html ├── 8_multiple_areas.html ├── 9_lines_highlighted.html └── worldbankdata ├── CITATION.md ├── china_co2_emissions.csv ├── co2_emissions.csv └── usa_co2_emissions.csv /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/README.md -------------------------------------------------------------------------------- /d3.v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/d3.v3.js -------------------------------------------------------------------------------- /module1/colourlovers/CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module1/colourlovers/CITATION.md -------------------------------------------------------------------------------- /module1/colourlovers/top_colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module1/colourlovers/top_colors.json -------------------------------------------------------------------------------- /module1/colourlovers/top_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module1/colourlovers/top_colors.xml -------------------------------------------------------------------------------- /module1/colourlovers/top_palettes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module1/colourlovers/top_palettes.json -------------------------------------------------------------------------------- /module1/colourlovers/top_palettes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module1/colourlovers/top_palettes.xml -------------------------------------------------------------------------------- /module1/test_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module1/test_data.csv -------------------------------------------------------------------------------- /module1/test_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module1/test_data.json -------------------------------------------------------------------------------- /module1/test_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module1/test_data.xml -------------------------------------------------------------------------------- /module1/worldbank/CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module1/worldbank/CITATION.md -------------------------------------------------------------------------------- /module1/worldbank/sp.pop.totl_Indicator_en_csv_v2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module1/worldbank/sp.pop.totl_Indicator_en_csv_v2.csv -------------------------------------------------------------------------------- /module1/worldbank/sp.pop.totl_Indicator_en_xml_v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module1/worldbank/sp.pop.totl_Indicator_en_xml_v2.xml -------------------------------------------------------------------------------- /module2/1_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module2/1_html.html -------------------------------------------------------------------------------- /module2/2_css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module2/2_css.html -------------------------------------------------------------------------------- /module2/3_svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module2/3_svg.html -------------------------------------------------------------------------------- /module2/4_javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module2/4_javascript.html -------------------------------------------------------------------------------- /module2/5_d3_with_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module2/5_d3_with_html.html -------------------------------------------------------------------------------- /module2/6_d3_with_svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module2/6_d3_with_svg.html -------------------------------------------------------------------------------- /module2/7_csv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module2/7_csv.html -------------------------------------------------------------------------------- /module2/CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module2/CITATION.md -------------------------------------------------------------------------------- /module2/betterlifeindex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module2/betterlifeindex.csv -------------------------------------------------------------------------------- /module3/1_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module3/1_append.html -------------------------------------------------------------------------------- /module3/2_creating_from_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module3/2_creating_from_data.html -------------------------------------------------------------------------------- /module3/3_svg_elements_from_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module3/3_svg_elements_from_data.html -------------------------------------------------------------------------------- /module3/4_setting_attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module3/4_setting_attributes.html -------------------------------------------------------------------------------- /module3/5_sorting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module3/5_sorting.html -------------------------------------------------------------------------------- /module3/6_titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module3/6_titles.html -------------------------------------------------------------------------------- /module3/CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module3/CITATION.md -------------------------------------------------------------------------------- /module3/betterlifeindex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module3/betterlifeindex.csv -------------------------------------------------------------------------------- /module4/1_scaled_widths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module4/1_scaled_widths.html -------------------------------------------------------------------------------- /module4/2_dynamic_domain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module4/2_dynamic_domain.html -------------------------------------------------------------------------------- /module4/3_scaled_heights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module4/3_scaled_heights.html -------------------------------------------------------------------------------- /module4/4_scaled_heights_spaced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module4/4_scaled_heights_spaced.html -------------------------------------------------------------------------------- /module4/5_padding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module4/5_padding.html -------------------------------------------------------------------------------- /module4/6_horizontal_axis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module4/6_horizontal_axis.html -------------------------------------------------------------------------------- /module4/7_vertical_axis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module4/7_vertical_axis.html -------------------------------------------------------------------------------- /module4/8_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module4/8_labels.html -------------------------------------------------------------------------------- /module4/9_cleaner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module4/9_cleaner.html -------------------------------------------------------------------------------- /module4/CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module4/CITATION.md -------------------------------------------------------------------------------- /module4/betterlifeindex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module4/betterlifeindex.csv -------------------------------------------------------------------------------- /module5/1_scatterplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module5/1_scatterplot.html -------------------------------------------------------------------------------- /module5/2_formatting_ticks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module5/2_formatting_ticks.html -------------------------------------------------------------------------------- /module5/3_transitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module5/3_transitions.html -------------------------------------------------------------------------------- /module5/4_delay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module5/4_delay.html -------------------------------------------------------------------------------- /module5/CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module5/CITATION.md -------------------------------------------------------------------------------- /module5/betterlifeindex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module5/betterlifeindex.csv -------------------------------------------------------------------------------- /module6/10_opacity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/10_opacity.html -------------------------------------------------------------------------------- /module6/1_dates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/1_dates.html -------------------------------------------------------------------------------- /module6/2_plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/2_plot.html -------------------------------------------------------------------------------- /module6/3_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/3_line.html -------------------------------------------------------------------------------- /module6/4_two_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/4_two_lines.html -------------------------------------------------------------------------------- /module6/5_multiple_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/5_multiple_lines.html -------------------------------------------------------------------------------- /module6/6_area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/6_area.html -------------------------------------------------------------------------------- /module6/7_two_areas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/7_two_areas.html -------------------------------------------------------------------------------- /module6/8_multiple_areas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/8_multiple_areas.html -------------------------------------------------------------------------------- /module6/9_lines_highlighted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/9_lines_highlighted.html -------------------------------------------------------------------------------- /module6/worldbankdata/CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/worldbankdata/CITATION.md -------------------------------------------------------------------------------- /module6/worldbankdata/china_co2_emissions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/worldbankdata/china_co2_emissions.csv -------------------------------------------------------------------------------- /module6/worldbankdata/co2_emissions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/worldbankdata/co2_emissions.csv -------------------------------------------------------------------------------- /module6/worldbankdata/usa_co2_emissions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/data-vis-d3/HEAD/module6/worldbankdata/usa_co2_emissions.csv --------------------------------------------------------------------------------