List of arguments for a plot
Hello.
I'm trying to plot a set of functions with a list of arguments, say
plot(detT, (r,0,7), axes_labels=[r"$r$",r"$\det(T)$"], figsize=4, ticks=[[],[]], fontsize=14)
Question
I'd like to define a list or something with all the plot options, say myplotformat
, and then plot it like
plot(detT, (r,0,7), myplotformat)
- Is it possible?
Cheers.