-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
readme & encyclopedists using old style of author contributions #26
Comments
#> # A tibble: 2 × 5
#> given_name family_name role_1 role_2 role_3
#> <chr> <chr> <chr> <chr> <chr>
#> 1 Zip Zap conceptualisation NA writing
#> 2 Ric Rac NA visualisation writing |
I've found the issue - plume has changed from using "contribution" to "role" for the column headers which broke my manuscript with the error:
This confused me, and I didn't realise what had changed, and when I found the new vignette, I though that was it. Maybe the vignette should show both methods. Encyclopedists has columns role_n1 role_n2 role_v1 role_v2 - what do the n and v signify? With regard to ordering the contribution, I was imagining something like this library(plume)
tmp <- plm_template(credit_roles = TRUE) |>
dplyr::add_row(given_name = c("A", "C"), family_name = c("Jones", "Smith"), conceptualization = as.character(1:2), data_curation = as.character(2:1))
Plume$new(tmp, credit_roles = TRUE)$get_contributions()
#> Conceptualization: A.J. C.S.
#> Data curation: C.S. A.J. Where AJ lead the conceptualisation and CS lead the data curation. Would be nice if |
The
|
The example on the readme, and
plume::encyclopedists
is using the old style of author contribution.Is it possible to allow numbers other than 1 in the role to allow for ranking the contributions?
Is it possible to internationalise the role names (visualisation vs. visualization), and allow ad hoc contributions?
The text was updated successfully, but these errors were encountered: