mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 01:49:39 +02:00
This commit is contained in:
parent
d76c75bd93
commit
2a39655e96
4 changed files with 2 additions and 9 deletions
|
@ -131,7 +131,6 @@ export(write_quarto)
|
|||
importFrom(classInt,classIntervals)
|
||||
importFrom(data.table,as.data.table)
|
||||
importFrom(data.table,data.table)
|
||||
importFrom(grDevices,col2rgb)
|
||||
importFrom(graphics,abline)
|
||||
importFrom(graphics,axis)
|
||||
importFrom(graphics,hist)
|
||||
|
@ -142,7 +141,6 @@ importFrom(htmltools,css)
|
|||
importFrom(htmltools,tagList)
|
||||
importFrom(htmltools,tags)
|
||||
importFrom(htmltools,validateCssUnit)
|
||||
importFrom(phosphoricons,ph)
|
||||
importFrom(rlang,"%||%")
|
||||
importFrom(rlang,call2)
|
||||
importFrom(rlang,expr)
|
||||
|
@ -161,25 +159,20 @@ importFrom(shiny,isTruthy)
|
|||
importFrom(shiny,modalDialog)
|
||||
importFrom(shiny,moduleServer)
|
||||
importFrom(shiny,numericInput)
|
||||
importFrom(shiny,observe)
|
||||
importFrom(shiny,observeEvent)
|
||||
importFrom(shiny,plotOutput)
|
||||
importFrom(shiny,reactive)
|
||||
importFrom(shiny,reactiveValues)
|
||||
importFrom(shiny,renderPlot)
|
||||
importFrom(shiny,renderUI)
|
||||
importFrom(shiny,req)
|
||||
importFrom(shiny,restoreInput)
|
||||
importFrom(shiny,selectizeInput)
|
||||
importFrom(shiny,showModal)
|
||||
importFrom(shiny,tagList)
|
||||
importFrom(shiny,textAreaInput)
|
||||
importFrom(shiny,textInput)
|
||||
importFrom(shiny,uiOutput)
|
||||
importFrom(shiny,updateActionButton)
|
||||
importFrom(shiny,updateTextAreaInput)
|
||||
importFrom(shinyWidgets,WinBox)
|
||||
importFrom(shinyWidgets,alert)
|
||||
importFrom(shinyWidgets,noUiSliderInput)
|
||||
importFrom(shinyWidgets,prettyCheckbox)
|
||||
importFrom(shinyWidgets,updateVirtualSelect)
|
||||
|
|
|
@ -13,7 +13,7 @@ cut_variable_server(id, data_r = reactive(NULL))
|
|||
|
||||
modal_cut_variable(
|
||||
id,
|
||||
title = i18n("Convert Numeric to Factor"),
|
||||
title = datamods:::i18n("Convert Numeric to Factor"),
|
||||
easyClose = TRUE,
|
||||
size = "l",
|
||||
footer = NULL
|
||||
|
|
|
@ -22,5 +22,6 @@ mtcars |> get_label(var = "mpg")
|
|||
mtcars |> get_label()
|
||||
mtcars$mpg |> get_label()
|
||||
gtsummary::trial |> get_label(var = "trt")
|
||||
gtsummary::trial$trt |> get_label()
|
||||
1:10 |> get_label()
|
||||
}
|
||||
|
|
|
@ -39,6 +39,5 @@ data.frame(
|
|||
plot_sankey_single("first", "last", color.group = "pri")
|
||||
mtcars |>
|
||||
default_parsing() |>
|
||||
str()
|
||||
plot_sankey_single("cyl", "vs", color.group = "pri")
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue