Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions R/LSeffectSizes.R
Original file line number Diff line number Diff line change
Expand Up @@ -1127,8 +1127,8 @@ switchOptions <- function(options) {
}

plot <- ggplot2::ggplot(data = data) +
ggplot2::scale_x_continuous(name = "", breaks = ticks, limits = range(ticks)) +
ggplot2::scale_y_continuous(name = "", breaks = ticks, limits = range(ticks)) +
ggplot2::scale_x_continuous(name = "", breaks = scales::pretty_breaks(n = 3)) +
ggplot2::scale_y_continuous(name = "", breaks = scales::pretty_breaks(n = 3)) +
ggplot2::geom_rect(
mapping = ggplot2::aes(
xmin = x_start,
Expand Down Expand Up @@ -1188,8 +1188,8 @@ switchOptions <- function(options) {
}

plot <- ggplot2::ggplot(data = data) +
ggplot2::scale_x_continuous(name = "", breaks = ticks, limits = range(ticks)) +
ggplot2::scale_y_continuous(name = "", breaks = ticks, limits = range(ticks)) +
ggplot2::scale_x_continuous(name = "", breaks = scales::pretty_breaks(n = 3)) +
ggplot2::scale_y_continuous(name = "", breaks = scales::pretty_breaks(n = 3)) +
ggplot2::geom_rect(
mapping = ggplot2::aes(
xmin = x_start,
Expand Down Expand Up @@ -1255,8 +1255,8 @@ switchOptions <- function(options) {
}

plot <- ggplot2::ggplot() +
ggplot2::scale_x_continuous(name = "", breaks = ticks, limits = range(ticks)) +
ggplot2::scale_y_continuous(name = "", breaks = ticks, limits = range(ticks)) +
ggplot2::scale_x_continuous(name = "", breaks = scales::pretty_breaks(n = 3)) +
ggplot2::scale_y_continuous(name = "", breaks = scales::pretty_breaks(n = 3)) +
ggplot2::geom_rect(
data = dataS,
mapping = ggplot2::aes(
Expand Down
10 changes: 5 additions & 5 deletions inst/qml/LSeffectSizes.qml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Form {
name: "effectSizeValueDelta"
label: "δ"
visible: !inputPopulation.checked
defaultValue: 0
defaultValue: 0.5
}

DoubleField
Expand Down Expand Up @@ -91,13 +91,13 @@ Form {
Group
{
visible: effectSize.value == "rho"

DoubleField
{

name: "effectSizeValueRho"
label: "ρ"
defaultValue: 0
defaultValue: 0.5
min: -1
max: 1
}
Expand Down Expand Up @@ -142,7 +142,7 @@ Form {
name: "effectSizeValuePhi"
visible: !inputPopulation.checked
label: "φ"
defaultValue: 0
defaultValue: 0.5
min: -1
max: 1
}
Expand Down