LatticeQCD / AnalysisToolbox

A set of Python tools for statistically analyzing data. This includes aspects of lattice QCD applications related to QCD phenomenology.
MIT License
22 stars 4 forks source link

more minor cleanup #37

Closed clarkedavida closed 1 year ago

clarkedavida commented 1 year ago
clarkedavida commented 1 year ago

the block

    # Options for plotting files and functions.
    'xcol': None,        # Column for the xdata when plotting a file.
    'ycol': None,        # Column for the ydata when plotting a file.
    'yecol': None,       # Column for the errors in y-direction when plotting a file.
    'xecol': None,       # Column for the errors in x-direction when plotting a file.
    'style': "dots",     # Style when plotting a file.
    'npoints': 1000,     # Number of points for function plotting.

in the plotting library's default_params probably shouldn't be there. especially the column stuff... you should specify that when you call the function that plots the data.

clarkedavida commented 1 year ago

done