1 Answer
- Newest
- Most votes
- Most comments
2
The following code works, both in a AWS Glue Notebook or in a jupyter notebook using interactive sessions. hope this helps,
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
plt.clf()
df=sqlDF.toPandas()
plt.bar(df.DOLocationID, df.sum_total_amount)
%matplot plt
Relevant content
- asked a year ago
- Accepted Answerasked 3 months ago
- asked 2 years ago
- asked 3 years ago
- AWS OFFICIALUpdated 3 months ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 months ago