Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wqGraphApp
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
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Water
WQ Visualizations Tools
wqGraphApp
Merge requests
!20
Convert to new add_ticks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Convert to new add_ticks
more_style_updates
into
main
Overview
0
Commits
1
Pipelines
1
Changes
9
Merged
Laura A DeCicco
requested to merge
more_style_updates
into
main
3 months ago
Overview
0
Commits
1
Pipelines
1
Changes
9
Expand
Fixes
#49 (closed)
Fixes
#54 (closed)
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
333d4f95
1 commit,
3 months ago
9 files
+
182
−
97
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
plot_functions/bp_flow_plot.R
+
2
−
2
Options
@@ -14,7 +14,7 @@ bp_flow_plot <- reactive({
bp_flow_plot
<-
ggplot
(
data
=
box_data
)
+
geom_boxplot
(
aes
(
x
=
all
,
y
=
Q
))
+
add_ticks
(
log_y
=
TRUE
,
include_x
=
FALSE
)
+
add_ticks
(
y_scale
=
"log"
,
x_scale
=
"remove"
)
+
theme_wqGraph
()
+
labs
(
y
=
eList
$
INFO
$
daily_label_small
,
x
=
"Comparison of\nSampled Days to All Days"
,
@@ -43,7 +43,7 @@ title <- paste0(eList$INFO$site_no, " ", eList$INFO$shortName)
bp_flow_plot <- ggplot(data = box_data) +
geom_boxplot(aes(x = all, y = Q)) +
add_ticks(
log_y = TRUE, include_x = FALSE
) +
add_ticks(
y_scale = "log", x_scale = "remove"
) +
theme_wqGraph() +
labs(y = eList$INFO$flow_label_small,
x = "Comparison of\nSampled Days to All Days",
Loading