You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Not restricting to named arguments using args_to_use so that ... passes settings to plot_variable even that aren't formal arguments to plot_maps
I get the logic here of wanting to pass information but it is passing everything, even information intended for other plots. For example, I wanted to pass strata_names to plot_biomass_indexand it also tries to pass it topar(Par)inplot_maps` where I get the following error
In par(Par) : "strata_names" is not a graphical parameter
I can work around this by making a direct call to plot_biomass_index(strata_names = ) but I thought it was worth bringing the topic up in case others are wanting to pass non-standard information through plot_results(). Feel free to close this issue if you feel users should be calling plots individually.
The text was updated successfully, but these errors were encountered:
FishStatsUtils/R/plot_results.R
Line 118 in 82cd3b5
I get the logic here of wanting to pass information but it is passing everything, even information intended for other plots. For example, I wanted to pass
strata_names
to plot_biomass_indexand it also tries to pass it to
par(Par)in
plot_maps` where I get the following errorI can work around this by making a direct call to
plot_biomass_index(strata_names = )
but I thought it was worth bringing the topic up in case others are wanting to pass non-standard information throughplot_results()
. Feel free to close this issue if you feel users should be calling plots individually.The text was updated successfully, but these errors were encountered: