Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GraphstatsR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Etienne Rifa
GraphstatsR
Merge requests
!1
add for 1.4
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add for 1.4
datamods
into
master
Overview
0
Commits
15
Pipelines
0
Changes
10
Merged
Etienne Rifa
requested to merge
datamods
into
master
2 years ago
Overview
0
Commits
15
Pipelines
0
Changes
10
Expand
add new input modules with filters widgets (datamods package)
add options for boxplots: coloring boxplots, custom y axis label, inform outliers or not, and reordering/stashing boxplot conditions (sortable package)
modularizing code
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
fbd5b8a1
15 commits,
2 years ago
10 files
+
1706
−
33
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
R/app_server.R
+
4
−
3
Options
@@ -18,8 +18,9 @@ app_server <- function( input, output, session ) {
# List the first level callModules here
# callModule(mod_Inputs_server, "Inputs_ui_1", session=session, r = r)
mod_Inputs_server
(
"Inputs_ui_1"
)
# mod_idmschoice_server("idmschoice_ui_1")
mod_inputs_server
(
"inputs_1"
,
session
=
session
,
r
=
r
)
mod_acp_server
(
"acp_1"
,
session
=
session
,
r
=
r
)
mod_boxplots_server
(
"boxplots_1"
,
session
=
session
,
r
=
r
)
# mod_idmschoice_server("idmschoice_ui_1", session=session, r=r)
}
Loading