import matplotlib.pyplot as plt # pip / conda install matplotlib
import numpy as np              # pip / conda install numpy
import pandas as pd             # pip / conda install pandas
import seaborn as sns           # pip / conda install seaborn

data_np = np.random.rand(100)
data_pd = pd.DataFrame({"x": range(100), "y": np.random.rand(100)})

# sns.scatterplot(x='x', y='y', data=data_pd)
plt.plot(data_np)

#Einfacher Plot mit Matplotlib
plt.show()