wham icon indicating copy to clipboard operation
wham copied to clipboard

Plot_wham_output() missing variable yr.col

Open tcarruth opened this issue 3 years ago • 2 comments

Line 187 of EGB_WHAM_tjm.R is:

plot_wham_output(mod=m1, out.type='html')

This returns the error:

Error in plot.xy(xy.coords(x, y), type = type, ...) : object 'yr.col' not found

As a temporary fix this is solved by:

yr.col<<-rainbow(100,start=0.2,end=1) # FLAG github issue plot_wham_output(mod=m1, out.type='html') # without yr.col definition this does not work

tcarruth avatar Mar 16 '21 15:03 tcarruth