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

Add a description for heat map. #889

Merged
merged 2 commits into from
Nov 17, 2020
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
2 changes: 1 addition & 1 deletion _episodes/03-matplotlib.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ the best way to develop insight is often to visualize data. Visualization deser
lecture of its own, but we can explore a few features of Python's `matplotlib` library here. While
there is no official plotting library, `matplotlib` is the _de facto_ standard. First, we will
import the `pyplot` module from `matplotlib` and use two of its functions to create and display a
heat map of our data:
[heat map]({{ page.root }}/reference.html#heat-map) of our data:

~~~
import matplotlib.pyplot
Expand Down
4 changes: 4 additions & 0 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ function
function call
: A use of a function in another piece of software.

heat map
: A graphical representation of two-dimensional data in which colors,
ranging on a scale of hue or intensity, represent the data values.

immutable
: Unchangeable.
The value of immutable data cannot be altered after it has been created.
Expand Down