mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 04:27:30 +02:00
This commit is contained in:
parent
6c44be558d
commit
912fff7474
32 changed files with 2340 additions and 273 deletions
31
NAMESPACE
31
NAMESPACE
|
|
@ -9,6 +9,7 @@ export(argsstring2list)
|
|||
export(baseline_table)
|
||||
export(clean_date)
|
||||
export(clean_sep)
|
||||
export(columnSelectInput)
|
||||
export(contrast_text)
|
||||
export(create_overview_datagrid)
|
||||
export(create_plot)
|
||||
|
|
@ -23,6 +24,7 @@ export(data_visuals_server)
|
|||
export(data_visuals_ui)
|
||||
export(default_format_arguments)
|
||||
export(default_parsing)
|
||||
export(drop_empty_event)
|
||||
export(factorize)
|
||||
export(file_export)
|
||||
export(format_writer)
|
||||
|
|
@ -32,6 +34,10 @@ export(get_plot_options)
|
|||
export(getfun)
|
||||
export(gg_theme_export)
|
||||
export(gg_theme_shiny)
|
||||
export(grepl_fix)
|
||||
export(import_delim)
|
||||
export(import_file_server)
|
||||
export(import_file_ui)
|
||||
export(index_embed)
|
||||
export(is_any_class)
|
||||
export(is_consecutive)
|
||||
|
|
@ -65,7 +71,9 @@ export(regression_model_uv_list)
|
|||
export(regression_table)
|
||||
export(remove_empty_cols)
|
||||
export(remove_na_attr)
|
||||
export(repeated_instruments)
|
||||
export(sankey_ready)
|
||||
export(selectInputIcon)
|
||||
export(shiny_freesearcheR)
|
||||
export(specify_qmd_format)
|
||||
export(subset_types)
|
||||
|
|
@ -76,7 +84,9 @@ export(update_factor_server)
|
|||
export(update_factor_ui)
|
||||
export(update_variables_server)
|
||||
export(update_variables_ui)
|
||||
export(vectorSelectInput)
|
||||
export(vertical_stacked_bars)
|
||||
export(wide2long)
|
||||
export(winbox_cut_variable)
|
||||
export(winbox_update_factor)
|
||||
export(write_quarto)
|
||||
|
|
@ -90,11 +100,22 @@ importFrom(graphics,hist)
|
|||
importFrom(graphics,par)
|
||||
importFrom(graphics,plot.new)
|
||||
importFrom(graphics,plot.window)
|
||||
importFrom(htmltools,css)
|
||||
importFrom(htmltools,tagAppendAttributes)
|
||||
importFrom(htmltools,tagAppendChild)
|
||||
importFrom(htmltools,tagList)
|
||||
importFrom(htmltools,tags)
|
||||
importFrom(htmltools,validateCssUnit)
|
||||
importFrom(phosphoricons,ph)
|
||||
importFrom(readxl,excel_sheets)
|
||||
importFrom(rio,import)
|
||||
importFrom(rlang,"%||%")
|
||||
importFrom(rlang,call2)
|
||||
importFrom(rlang,exec)
|
||||
importFrom(rlang,expr)
|
||||
importFrom(rlang,fn_fmls_names)
|
||||
importFrom(rlang,is_function)
|
||||
importFrom(rlang,is_named)
|
||||
importFrom(rlang,set_names)
|
||||
importFrom(rlang,sym)
|
||||
importFrom(rlang,syms)
|
||||
|
|
@ -103,6 +124,7 @@ importFrom(shiny,actionButton)
|
|||
importFrom(shiny,bindEvent)
|
||||
importFrom(shiny,checkboxInput)
|
||||
importFrom(shiny,column)
|
||||
importFrom(shiny,fileInput)
|
||||
importFrom(shiny,fluidRow)
|
||||
importFrom(shiny,getDefaultReactiveDomain)
|
||||
importFrom(shiny,icon)
|
||||
|
|
@ -114,8 +136,10 @@ importFrom(shiny,observeEvent)
|
|||
importFrom(shiny,plotOutput)
|
||||
importFrom(shiny,reactive)
|
||||
importFrom(shiny,reactiveValues)
|
||||
importFrom(shiny,removeUI)
|
||||
importFrom(shiny,renderPlot)
|
||||
importFrom(shiny,req)
|
||||
importFrom(shiny,restoreInput)
|
||||
importFrom(shiny,selectizeInput)
|
||||
importFrom(shiny,showModal)
|
||||
importFrom(shiny,tagList)
|
||||
|
|
@ -123,8 +147,13 @@ importFrom(shiny,textInput)
|
|||
importFrom(shiny,uiOutput)
|
||||
importFrom(shiny,updateActionButton)
|
||||
importFrom(shinyWidgets,WinBox)
|
||||
importFrom(shinyWidgets,dropMenu)
|
||||
importFrom(shinyWidgets,noUiSliderInput)
|
||||
importFrom(shinyWidgets,numericInputIcon)
|
||||
importFrom(shinyWidgets,pickerInput)
|
||||
importFrom(shinyWidgets,prettyCheckbox)
|
||||
importFrom(shinyWidgets,textInputIcon)
|
||||
importFrom(shinyWidgets,updatePickerInput)
|
||||
importFrom(shinyWidgets,updateVirtualSelect)
|
||||
importFrom(shinyWidgets,virtualSelectInput)
|
||||
importFrom(shinyWidgets,wbControls)
|
||||
|
|
@ -137,4 +166,6 @@ importFrom(toastui,grid_colorbar)
|
|||
importFrom(toastui,grid_columns)
|
||||
importFrom(toastui,renderDatagrid)
|
||||
importFrom(toastui,renderDatagrid2)
|
||||
importFrom(tools,file_ext)
|
||||
importFrom(utils,head)
|
||||
importFrom(utils,type.convert)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue