Answers for "change size of scatter plot matplotlib"

4

legend size matplotlib

plt.plot([1, 2, 3], label='Inline label')
plt.legend(loc=1, prop={'size': 16})
Posted by: Guest on July-01-2020
0

how to decrease size of graph in plt.scatter

fig, ax = plt.subplots(figsize=(10, 6))
Posted by: Guest on March-31-2021
-1

python scatterplot figsize

plt.figure(figsize=(8, 8))
plt.scatter(x, y)
Posted by: Guest on June-10-2021

Code answers related to "change size of scatter plot matplotlib"

Python Answers by Framework

Browse Popular Code Answers by Language