“plot matplotlib sebar” Kode Jawaban

bagaimana melakukan plot sebar di pyplot

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

plot matplotlib sebar

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

sebaran plot

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

Jawaban yang mirip dengan “plot matplotlib sebar”

Pertanyaan yang mirip dengan “plot matplotlib sebar”

Lebih banyak jawaban terkait untuk “plot matplotlib sebar” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya