-
Notifications
You must be signed in to change notification settings - Fork 8
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
Blog - basic scatter plot #22
base: gh-pages
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really clean, but maybe add a line after the convert to show the power/benefit of converting the Altair object into an mpl one?
layout: post | ||
title: "Making a Scatter Plot - Part 1" | ||
date: 2018-08-15 15:00:00 -0500 | ||
author: "Kimberly Orr and Nabarun Pal" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think Jekyll has a format for multiple authors
--- | ||
|
||
# Making a Scatter Plot | ||
This post will walk you through making a simple scatter plot in Altair, Matplotlib, and mpl-altair. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think drop the word simple
|
||
# Making a Scatter Plot | ||
This post will walk you through making a simple scatter plot in Altair, Matplotlib, and mpl-altair. | ||
We'll examine the cars dataset: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a sentence explaining the cars dataset or link to it?
|
||
## mpl-altair | ||
To produce the mpl-altair plot, create the Altair chart and then pass it to | ||
mplaltair's `convert()` function. The resulting fig and ax are Matplotlib plots. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Matplotlib objects.
This is the scatter plot section from the blog post Nabarun and I were working on.