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
While I went through the vignette, I noticed some minor points that you may find useful for your next version. Use as you wish:
colData(cpd)$country (and other similar cases) can be also written more shortly just like: cpd$country
ggplot(as.data.frame(colData(cpd)))... -> the as.data.frame() was necessary until very recently, but not needed any more since the issue was solved ; the latest ggplot2 version allows this:
ggplot(colData(cpd))...
We are adding a reference to this data resource in the OMA Gitbook (beta version, under active development)
The text was updated successfully, but these errors were encountered:
from @antagomir
While I went through the vignette, I noticed some minor points that you may find useful for your next version. Use as you wish:
The text was updated successfully, but these errors were encountered: