I am a new user of PandasGUI. I simply read the table of data and want to see a quick line plot:
import pandas as pd
from pandasgui import show
my_data = pd.read_csv('d:\\raspberry\marko\data\motor_volt_1a.txt',sep='\t')
print(my_data)
show(my_data)
The point is that my data are a hysteresis (different y values when x increases and decreases). I cannot see this hysteresis because Grapher sorts the data according to x before plotting them. Is it possible to turn sorting off? I see there is a Custom Kwargs, but I cannot find the list of Kwargs anywhere.