Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
pertz-lab
shiny-timecourse-inspector
Commits
86b5e0be
Commit
86b5e0be
authored
Oct 03, 2019
by
dmattek
Browse files
removed ceiling of y-axis limits
parent
5758c003
Changes
1
Show whitespace changes
Inline
Side-by-side
modules/trajRibbonPlot.R
View file @
86b5e0be
...
...
@@ -146,7 +146,7 @@ modTrajRibbonPlot = function(input, output, session,
ns
(
'inSetYboundsLow'
),
label
=
'Lower'
,
step
=
0.1
,
value
=
floor
(
min
(
loc.dt
[[
COLY
]],
na.rm
=
T
)
)
value
=
min
(
loc.dt
[[
COLY
]],
na.rm
=
T
)
)
}
})
...
...
@@ -168,7 +168,7 @@ modTrajRibbonPlot = function(input, output, session,
ns
(
'inSetYboundsHigh'
),
label
=
'Upper'
,
step
=
0.1
,
value
=
ceil
(
max
(
loc.dt
[[
COLY
]],
na.rm
=
T
)
)
value
=
max
(
loc.dt
[[
COLY
]],
na.rm
=
T
)
)
}
})
...
...
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