Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
pertz-lab
shiny-timecourse-inspector
Commits
ec391e2a
Commit
ec391e2a
authored
May 03, 2018
by
dmattek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed: y-axis trimming with NAs
parent
4cc5d937
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/trajPlot.R
modules/trajPlot.R
+2
-2
No files found.
modules/trajPlot.R
View file @
ec391e2a
...
...
@@ -86,8 +86,8 @@ modTrajPlot = function(input, output, session,
loc.dt
=
in.data
()
locYmin
=
signif
(
min
(
loc.dt
$
y
),
4
)
locYmax
=
signif
(
max
(
loc.dt
$
y
),
4
)
locYmin
=
signif
(
min
(
loc.dt
$
y
,
na.rm
=
T
),
4
)
locYmax
=
signif
(
max
(
loc.dt
$
y
,
na.rm
=
T
),
4
)
sliderInput
(
ns
(
'slYTrim'
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment