I have this table: The data in the table
I want to modify the graph by converting the lines into smooth lines, this how the graph looks like now: The current graph
This is my code:
import pandas as pd
import seaborn as sns
plotDf = pd.read_csv('myFile.csv')
sns.lineplot(
data=plotDf,
x= "Hum", y= "Fam", hue="Genfer", style="Genfer",
markers=True, dashes=False
)
This is an example: Smooth Lines Graph