This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example 6 | |
from matplotlib import pyplot # Importing the relevant package | |
pyplot.title("Simple plot of the raw values") # Creating a title | |
df['values'].plot() # Creating the plot | |
pyplot.show() # Showing the plot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment