1 Resposta
- Mais recentes
- Mais votos
- Mais comentários
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
Conteúdo relevante
feita há 2 anos
feita há um ano
- AWS OFICIALAtualizada há um ano
