- 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 to change the linewidth and markersize separately in a factorplot in Matplotlib?
To change the linewidth and markersize separately in a factorplot, we can use the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Load an example dataset from the online repository.
- Use factorplot() method with scale to change the marker size.
- To display the figure, use show() method.
Example
import seaborn as sns from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True exercise = sns.load_dataset("exercise") g = sns.factorplot(x="time", y="pulse", hue="kind", data=exercise, ci=95, markers=['o', '*', 'd'], scale=1, height=7.0) plt.show()
Output
- Related Articles
- How to change the linewidth of a hatch in Matplotlib?
- How to change the figuresize using Seaborn factorplot in Matplotlib?
- How to increase colormap/linewidth quality in streamplot Matplotlib?
- How to repress scientific notation in factorplot Y-axis in Seaborn / Matplotlib?
- How can I show figures separately in Matplotlib?
- How to change backends in Matplotlib?
- How to change the legend fontname in Matplotlib?
- How to change the color of a plot frame in Matplotlib?
- How to change fonts in matplotlib (python)?
- How to change the spacing between ticks in Matplotlib?
- How to change the strength of antialiasing in Matplotlib?
- How to change the curve using radiobuttons in Matplotlib?
- How to change xticks font size in a matplotlib plot?
- How to change the color of a line using radiobuttons in Matplotlib?
- How to change the DPI of a Pandas Dataframe Plot in Matplotlib?

Advertisements