We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ed0939 commit 125fa89Copy full SHA for 125fa89
subsite/publications.qmd
@@ -64,10 +64,10 @@ pub %>%
64
journal = so %>% as.factor(),
65
publisher = host_organization %>% as.factor(),
66
type = type %>% as.factor(),
67
- publication_date = publication_date %>% as_date()
+ `publication date` = publication_date %>% as_date()
68
) %>%
69
- select(!c(so, host_organization)) %>%
70
- arrange(desc(publication_date)) %>%
+ select(!c(so, host_organization, publication_date)) %>%
+ arrange(desc(`publication date`)) %>%
71
DT::datatable(escape = F)
72
73
```
0 commit comments