forked from mjwestgate/revtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNAMESPACE
53 lines (53 loc) · 2.07 KB
/
NAMESPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
export(read_bibliography, write_bibliography,
as.bibliography, summary.bibliography, print.bibliography, '[.bibliography', c.bibliography,
tag_lookup,
add_line_breaks, format_citation,
format_citation.bibliography, format_citation.data.frame, format_citation.list,
allocate_effort, distribute_tasks, aggregate_tasks,
fuzzdist,
fuzz_m_ratio, fuzz_partial_ratio, fuzz_token_sort_ratio, fuzz_token_set_ratio,
find_duplicates, extract_unique_references,
merge_columns, make_dtm, run_topic_model, revwords,
screen_duplicates, screen_titles, screen_abstracts,
screen_full_texts, screen_topics)
S3method(summary, screen_topics_progress)
S3method(format_citation, bibliography)
S3method(format_citation, list)
S3method(format_citation, data.frame)
S3method(c, bibliography)
S3method(print, bibliography)
S3method(summary, bibliography)
S3method(as.data.frame, bibliography)
S3method('[', bibliography)
importFrom(ade4, dudi.coa)
importFrom("utils", "combn", "read.csv")
importFrom("stats", "rnorm")
importFrom(grDevices, grey)
importFrom(modeltools, posterior)
importFrom(plotly,
event_data, "%>%", plotlyOutput,
renderPlotly, plotlyProxy, plotlyProxyInvoke)
importFrom(shiny,
br, div, HTML, tag,
fluidRow, column, icon,
checkboxInput, checkboxGroupInput,
fileInput, sliderInput, selectInput, textInput, textAreaInput,
actionButton, radioButtons,
tableOutput, textOutput, uiOutput, plotOutput,
reactiveValues, observe, observeEvent, isolate,
renderPrint, renderPlot, renderText, renderUI, splitLayout,
validate, need,
showModal, modalDialog, removeModal, modalButton,
insertUI, removeUI,
shinyApp, stopApp)
importFrom(shinydashboard,
sidebarMenu, menuItem, sidebarMenuOutput, renderMenu)
importFrom(stats, xtabs, plogis)
importFrom(stringdist, stringdist)
importFrom(stringr, str_starts)
importFrom(tm, removePunctuation, removeWords, removeNumbers,
stemDocument, tm_map, Corpus, VectorSource, DocumentTermMatrix,
removeSparseTerms, stopwords, content_transformer, weightTf)
importFrom(topicmodels, LDA, CTM, get_terms)
importFrom(utils, head, tail, write.csv, write.table)
importFrom(viridisLite, magma, viridis, inferno, plasma)