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
Significant sections of this code undergo hard-to-read loop-based processing and plotting that is nonintuitive to ggplot. For example, all of the if/else plotting statements at the end could be simplified - maybe not in number of lines but at least in terms of organization and readability - to more modular chunks of ggplot layers relying on dplyr-based transformations of the dataset. Making such a change would increase the readability of the code, make it easier to maintain, and also likely simplify and optimize processing.
The text was updated successfully, but these errors were encountered:
openVA/openVA/R/stackplot.r
Line 1 in f16a333
Significant sections of this code undergo hard-to-read loop-based processing and plotting that is nonintuitive to ggplot. For example, all of the
if/else
plotting statements at the end could be simplified - maybe not in number of lines but at least in terms of organization and readability - to more modular chunks of ggplot layers relying ondplyr
-based transformations of the dataset. Making such a change would increase the readability of the code, make it easier to maintain, and also likely simplify and optimize processing.The text was updated successfully, but these errors were encountered: