In [1]:
print("Hellow World")
Hellow World
This hellow world is in fact world famous ¶
In [3]:
import pandas as pd, numpy as np
In [4]:
import matplotlib.pyplot as plt
import numpy as np
# Generate some data
x = np.linspace(0, 10, 100)
y = np.sin(x)
# Create a fast plot
plt.plot(x, y)
plt.title("Fast Sine Wave Plot")
plt.xlabel("X-axis")
plt.ylabel("Y-axis")
plt.show()
In [6]:
import seaborn as sns
import numpy as np
import matplotlib.pyplot as plt
# Generate some data
data = np.random.normal(size=(100, 2))
df = sns.load_dataset('iris')
# Create a fast plot
sns.set_theme(style="whitegrid")
sns.lineplot(x="sepal_length", y="sepal_width", data=df)
plt.title("Fast Line Plot with Seaborn")
plt.show()