2023-01-10 14:26:11 +01:00
|
|
|
import numpy as np
|
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
import seaborn as sns
|
|
|
|
|
|
|
|
plt.title('ChatGpt seine Lernkurve')
|
|
|
|
|
2023-01-10 14:31:26 +01:00
|
|
|
a = np.random.random((100,100))
|
|
|
|
|
|
|
|
plt.imshow(a)
|
2023-01-10 14:26:11 +01:00
|
|
|
|
2023-01-10 14:31:26 +01:00
|
|
|
plt.hot()
|
2023-01-10 14:26:11 +01:00
|
|
|
|
2023-01-10 14:31:26 +01:00
|
|
|
plt.colorbar()
|
2023-01-10 14:26:11 +01:00
|
|
|
|
|
|
|
plt.show()
|