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
The insert_right, insert_top etc will return aplot class (eg. p ), which is composed of multiple subplots. They can be extracted using p$plotlist[[1]] etc. And the theme, scale and others of subplot can be adjusted using p$plotlist[[1]] <- p$plotlist[[1]] + xxx. Whether need to define operators acting on this class, then users can use p[[1]] to extract the subplot?
The text was updated successfully, but these errors were encountered:
The
insert_right
,insert_top
etc will returnaplot
class (eg.p
), which is composed of multiple subplots. They can be extracted usingp$plotlist[[1]]
etc. And the theme, scale and others of subplot can be adjusted usingp$plotlist[[1]] <- p$plotlist[[1]] + xxx
. Whether need to define operators acting on this class, then users can usep[[1]]
to extract the subplot?The text was updated successfully, but these errors were encountered: