- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How can I make Matplotlib.pyplot stop forcing the style of my markers?
To make matplotlib.pyplot stop forcing the style of markers, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Create random x and y data points using numpy.
- Plot x and y data points using plot() method, with "r*" marker with markersize=10.
- To display the figure, use show() method.
Example
from matplotlib import pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.random.rand(20) y = np.random.rand(20) plt.plot(x, y, 'r*', markersize=10) plt.show()
Output
- Related Articles
- How can I make my layout scroll vertically?
- How can I make my custom objects Parcelable?
- How can I make my custom objects Serializable?
- How can I make my layout scroll vertically in Android?
- How can I make the balance between my best friend and lover?
- How can I enhance my select query to make it faster in MySQL?
- How can I increase the page rank of my website?
- How can I organize my Python code to make it easier to change the base class?
- How do I make my string comparison case insensitive?
- Style unordered lists markers with CSS
- How can I get my invention patented?
- How can I improve my spoken English?
- How can I curb my shopping addiction?
- How can I increase my monthly savings?
- How can I stop running a MySQL query?

Advertisements