-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated preprocessing module and fixed minor bugs
- Loading branch information
1 parent
e4108f8
commit cff559a
Showing
3 changed files
with
220 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
# Import the entire shiny and DT packages | ||
import(shiny) | ||
import(DT) | ||
|
||
# Import specific functions from other packages | ||
importFrom(stats, rnorm, runif) # Example functions from stats (if used) | ||
importFrom(utils, read.csv, globalVariables) # For file reading or declaring global variables | ||
|
||
# Declare global variables to avoid warnings during R CMD check | ||
globalVariables(c("reactiveVal", "renderPlot", "renderDataTable", | ||
"dataTableOutput", "textInput", "datatable")) |
Oops, something went wrong.