I understand that scale changes both parameters at the same time, but I want to achieve the effect of a thin line connected between large markers.
I also tried resizing with rc{'lines.linewidth' = 1, 'lines.markersize' = 5} , but in the end it scales both the marker and the line width together, instead of setting them independently. Essentially, markersize not valid for some reason.
Edit: added plot and code to show problem
import seaborn as sns sns.set(style="whitegrid") paper_rc = {'lines.linewidth': 1, 'lines.markersize': 10} sns.set_context("paper", rc = paper_rc)
The first two figures below are created with markers 1 and 10, respectively. As shown, they seem to have the same markers. The last digit uses line.linewidth=10 line.markersize=1 , which increases the line width and marker.



source share