How to add jitter in a pairplot?

0

I'm creating a pairplot chart using the Python Seaborn library, but many points overlap and I can not give the actual volume to that particular point in the chart. How do I add Jitter in a pairplot chart?

import pandas as pd
import seaborn as sns

data = pd.read_csv('data.csv', encoding='ISO-8859-1')
sns.pairplot(data)
    
asked by anonymous 01.11.2018 / 21:18

0 answers