Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- matplotlib.pyplot
- start exercise
- AS
- line width
- variables
- PANDAS
- continue
- __init__
- For loops
- polynomial regression
- Python
- pie charts
- Default X points
- machine learning
- train/test
- Github
- multiple lines
- iterates
- matplotlib
- PROJECT
- Else
- error
- data distribution
- SQL
- self parameter
- Text mining
- break
- Text Analytics
- line color
- MySQL
Archives
- Today
- Total
목록format string (1)
Data Science Explorer

Markers When you want to emphasize each point with a specified marker, you can use the argument marker. Example Mark each point with a circle. import matplotlib.pyplot as plt import numpy as np ypoints =([5, 8, 0, 8]) plt.plot (ypoints, marker = 'o') plt.show() Result Mark each point with a star. Result Marker Reference Marker Description 'o' Circle '*' Star '.' Point ',' Pixel 'x' X 'X' X (fill..
Python
2023. 11. 4. 11:43