“Diagramm -Matplotlib -Streuung” Code-Antworten

Wie man in Pyplot eine Streudiagramme macht

import numpy as npimport matplotlib.pyplot as plt
# Create data
N = 500x = np.random.rand(N)
y = np.random.rand(N)
colors = (0,0,0)
area = np.pi*3
# Plot
plt.scatter(x, y, s=area, c=colors, alpha=0.5)
plt.title('Scatter plot pythonspot.com')
plt.xlabel('x')
plt.ylabel('y')
plt.show()
Odd Okapi

Diagramm -Matplotlib -Streuung

import numpy as np
import matplotlib.pyplot as plt

# Fixing random state for reproducibility
np.random.seed(19680801)


N = 50
x = np.random.rand(N)
y = np.random.rand(N)
colors = np.random.rand(N)
area = (30 * np.random.rand(N))**2  # 0 to 15 point radii

plt.scatter(x, y, s=area, c=colors, alpha=0.5)
plt.show()
Arbre

Streudiagramm

# Convert cyl column from a numeric to a factor variable
mtcars$cyl <- as.factor(mtcars$cyl)
head(mtcars)
Filthy Falcon

Ähnliche Antworten wie “Diagramm -Matplotlib -Streuung”

Fragen ähnlich wie “Diagramm -Matplotlib -Streuung”

Weitere verwandte Antworten zu “Diagramm -Matplotlib -Streuung” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen