How do I standardize axis scale (log) for all graphs generated from a looped script?
I'm trying to write a simple script that loops over columns and iteratively uses each column as the Y values in a plot. I think I've got the for loop down but I can't get the Y axis set to a log scale. The code runs but each graph that is generated is on a linear scale with a range that is specific for each column. I'd like each graph to be on a log scale (either with a specifically set min/max o...