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

Table of contents (TOC) rewrite #21

Merged
merged 2 commits into from
Jun 28, 2023
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
27 changes: 1 addition & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,7 @@ The full rendered pages of this repository can be found [here](https://bokeh.git
1. Introduction: An overview of the narrative and type of plots to expect.

2. Visualizing amounts
- Chapter 6.1 - Bar plots: Representing amounts using vertical and horizontal bars
- Chapter 6.2 - Grouped and stacked bars: Visualizing multiple groups or categories using grouped and stacked bars.
- Chapter 6.3 - Dot plots and heatmaps: using dots and colors to represent values.

3. Visualizing distributions
- Chapter 7.1 - Single distribution histogram and density plot: Showing the distribution of a single variable using histograms or density plots.
- Chapter 7.2 - Multiple distribution histogram and density plot: Comparing multiple distributions using histograms and density plots
- Chapter 9.1 - Box plots:Illustrating the distribution of data using boxes and whiskers.
- Chapter 9.2 - Ridgeline plots: Illustrating the density of multiple distributions along a common axis.

4. Visualizing proportions
- Chapter 10.1 - Pie charts: Dsplaying proportions using pie charts.
- Chapter 10.2 - Side-by-side bars: Comparing proportions across categories using side-by-side bars.
- Chapter 10.3 - Stacked bars and stacked densities: representing proportions using stacked bars and stacked density plots.
- Chapter 10.4 - Partial densities: Visualizing partial densities within a distribution.
- Chapter 11.2 - Mosaic plots and treemaps: Showing proportions and hierarchical relationships using mosaic plots or treemaps.
- Chapter 11.4 - Parallel sets: Visualizing categorical data and their associations using parallel sets.

5. Visualizing associations
- Chapter 12.1 - Scatter plots: Illustrating the relationship between two variables using points on a Cartesian plane.
- Chapter 12.4 - Paired data: Visualizing associations between paired data points.

6. Visualizing geospatial data
- Chapter 15.2 Layers: Illustrating geographical data using layers on a map.

7. Conclusion: Summary of the key points and importance of Data visualization using Bokeh.
- Bar plots: Representing amounts using vertical, horizontal, grouped, and stacked bars


## Local setup
Expand Down
44 changes: 2 additions & 42 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</head>

<body>
<img src="..\images\bokeh.png" alt="Bokeh logo" class="logo">
<img src="../images/bokeh.png" alt="Bokeh logo" class="logo">
<h1>Fundamentals of Data Visualization using Bokeh</h1>
<h2><a href="https://clauswilke.com/dataviz/">Book</a> by Claus O. Wilke</h2>
<hr>
Expand All @@ -45,49 +45,9 @@ <h3>Table of Contents</h3>
<li>
<span class="chapter-title"><strong>2. Visualizing amounts</strong></span>
<ul>
<li class="sub-header"><a href="bar_plots.html">Bar plots</a></li>
<li class="sub-header"><a href="grouped_bars.html">Grouped and stacked bars</a></li>
<li class="sub-header"><a href="dot_plots.html">Dot plots and heatmaps</a></li>
<li class="sub-header"><a href="01-visualize-amounts-bar-plots.html">Bar plots</a></li>
</ul>
</li>
<li>
<span class="chapter-title"><strong>3. Visualizing distributions</strong>
<ul>
<li class="sub-header"><a href="single_dist.html">Single distribution histogram and density
plot</a></li>
<li class="sub-header"><a href="multiple_dist.html">Multiple distribution histogram and density
plot</a></li>
<li class="sub-header"><a href="box_plots.html">Box plots</a></li>
<li class="sub-header"><a href="ridgeline_plots.html">Ridgeline plots</a></li>
</ul>
</li>
<li>
<span class="chapter-title"><strong>4. Visualizing proportions</strong>
<ul>
<li class="sub-header"><a href="pie_charts.html">Pie charts</a></li>
<li class="sub-header"><a href="side-by-side-bars.html">Side-by-side bars</a></li>
<li class="sub-header"><a href="stacked_bars.html">Stacked bars and stacked densities</a></li>
<li class="sub-header"><a href="partial-densities.html">Partial densities</a></li>
<li class="sub-header"><a href="mosaic_plots.html">Mosaic plots and treemaps</a></li>
<li class="sub-header"><a href="parallel_sets.html">Parallel sets</a></li>
</ul>
</li>
<li>
<span class="chapter-title"><strong>5. Visualizing associations</strong>
<ul>
<li class="sub-header"><a href="scatter_plots.html">Scatter plots</a></li>
<li class="sub-header"><a href="paired_data.html">Paired data</a></li>
</ul>
</li>
<li>
<span class="chapter-title"><strong>6. Visualizing Geospatial Data</strong>
<ul>
<li class="sub-header"><a href="layers.html">Layers</a></li>
</ul>
</li>
<li><a href="conclusion.html"><span class="chapter-title"><strong>7. Conclusion</strong></a></li>
</ul>
</li>
</ul>
</body>

Expand Down