Mẹo Hướng dẫn Matplotlib scatter list of points Mới Nhất
You đang tìm kiếm từ khóa Matplotlib scatter list of points được Update vào lúc : 2022-12-31 10:14:05 . Với phương châm chia sẻ Mẹo Hướng dẫn trong nội dung bài viết một cách Chi Tiết 2022. Nếu sau khi Read tài liệu vẫn ko hiểu thì hoàn toàn có thể lại Comments ở cuối bài để Mình lý giải và hướng dẫn lại nha.
Active April 05, 2022 / Viewed 60232 / Comments 0 / Edit
Nội dung chính
- Increase the size of all points
- Points with different size
Examples of how to increase the size of scatter points in matplotlib:
Increase the size of all points
To increase the size of scatter points, a solution is to use the option “s” from the function scatter(), example
How to increase the size of scatter points in matplotlib ?import matplotlib.pyplot as plt
x = [1,2,3,4,5,6,7,8]
y = [4,1,3,6,1,3,5,2]
plt.scatter(x,y,s=400,c=”lightblue”)
plt.title(‘Nuage de points avec Matplotlib’)
plt.xlabel(‘x’)
plt.ylabel(‘y’)
plt.savefig(‘ScatterPlot_07.png’)
plt.show()
Points with different size
To plot points with different size, a solution is to provide a list of size (or an array) to “s”. Note that the list must be of the same size that the input data:
How to increase the size of scatter points in matplotlib ?import matplotlib.pyplot as plt
x = [1,2,3,4,5,6,7,8]
y = [4,1,3,6,1,3,5,2]
size = [100,500,100,500,100,500,100,500]
plt.scatter(x,y,s=size)
plt.title(‘Nuage de points avec Matplotlib’)
plt.xlabel(‘x’)
plt.ylabel(‘y’)
plt.savefig(‘ScatterPlot_06.png’)
plt.show()
Another solution is to combine multiple scatter plots:
How to increase the size of scatter points in matplotlib ?import matplotlib.pyplot as plt
x = [1,2,3,4]
y = [4,1,3,6]
plt.scatter(x, y, s=100, c=”coral”)
x = [5,6,7,8]
y = [1,3,5,2]
size = [100,500,100,500]
plt.scatter(x, y, s=500, c=”lightblue”)
plt.title(‘Nuage de points avec Matplotlib’)
plt.xlabel(‘x’)
plt.ylabel(‘y’)
plt.savefig(‘ScatterPlot_08.png’)
plt.show()
References
Reply
6
0
Chia sẻ
Chia Sẻ Link Download Matplotlib scatter list of points miễn phí
Bạn vừa đọc tài liệu Với Một số hướng dẫn một cách rõ ràng hơn về Review Matplotlib scatter list of points tiên tiến và phát triển nhất và Chia SẻLink Tải Matplotlib scatter list of points miễn phí.
Thảo Luận vướng mắc về Matplotlib scatter list of points
Nếu sau khi đọc nội dung bài viết Matplotlib scatter list of points vẫn chưa hiểu thì hoàn toàn có thể lại Comment ở cuối bài để Ad lý giải và hướng dẫn lại nha
#Matplotlib #scatter #list #points