Skip to content

Clean up non-idiomatic code in vignette #14

@seandavi

Description

@seandavi

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:

  1. colData(cpd)$country (and other similar cases) can be also written more shortly just like: cpd$country
  2. 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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions