return a subset of the crosswalk table containing codemeta properties and matching column
crosswalk_table(from, to = NULL, full_crosswalk = "https://github.com/codemeta/codemeta/raw/master/crosswalk.csv", trim = TRUE)
from | the name of a column in the crosswalk table to map from. |
---|---|
to | the name of one or more columns in the crosswalk table to map into |
full_crosswalk | Path or URL (requires internet!) of the full crosswalk table. |
trim | drop rows giving properties not found in the 'from' column? |
a tibble containing the trimmed crosswalk table, listing property (in CodeMeta), and the corresponding terms in both from and to columns.
# NOT RUN { crosswalk_table(from = "GitHub", to = c("Zenodo", "Figshare")) # }