Skip to content

Commit

Permalink
L-mode colour fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmeloman committed Mar 12, 2021
1 parent ee095d1 commit d6a2e09
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .Rproj.user/DFCA1C7C/sources/prop/421CC383
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"tempName": "Untitled1",
"cursorPosition": "128,0",
"scrollLine": "140"
"scrollLine": "0",
"Source": "Source"
}
25 changes: 13 additions & 12 deletions plots.R
Original file line number Diff line number Diff line change
Expand Up @@ -6186,9 +6186,10 @@ lmode.plot.cat <- ggplot(lmo.emp, aes(x = xvalues, y = yvalues)) +
)

lmode.plot.dim <- ggplot(lmo.emp, aes(x = xvalues, y = yvalues)) +
geom_polygon(inherit.aes = FALSE, aes(x = lmode.polygon.dim.x, y = lmode.polygon.dim.y), fill = "#0b5db5") +
geom_line(aes(y = lmode.line1.dim.y), size = 1.2, color = "#0b5db5") +
geom_line(aes(y = lmode.line2.dim.y), size = 1.2, color = "#0b5db5") +
geom_polygon(inherit.aes = FALSE, aes(x = lmode.polygon.dim.x, y = lmode.polygon.dim.y),
fill = "#5aa007") +
geom_line(aes(y = lmode.line1.dim.y), size = 1.2, color = "#5aa007") +
geom_line(aes(y = lmode.line2.dim.y), size = 1.2, color = "#5aa007") +
geom_line(size = 1.5) +
geom_segment(aes(x = lmode.vline1.cat.x[1],
y = lmode.vline1.cat.y[1],
Expand Down Expand Up @@ -12405,9 +12406,9 @@ lmode.plot.cat <- ggplot(lmo.emp, aes(x = xvalues, y = yvalues)) +
)

lmode.plot.dim <- ggplot(lmo.emp, aes(x = xvalues, y = yvalues)) +
geom_polygon(inherit.aes = FALSE, aes(x = lmode.polygon.dim.x, y = lmode.polygon.dim.y), fill = "#0b5db5") +
geom_line(aes(y = lmode.line1.dim.y), size = 1.2, color = "#0b5db5") +
geom_line(aes(y = lmode.line2.dim.y), size = 1.2, color = "#0b5db5") +
geom_polygon(inherit.aes = FALSE, aes(x = lmode.polygon.dim.x, y = lmode.polygon.dim.y), fill = "#5aa007") +
geom_line(aes(y = lmode.line1.dim.y), size = 1.2, color = "#5aa007") +
geom_line(aes(y = lmode.line2.dim.y), size = 1.2, color = "#5aa007") +
geom_line(size = 1.5) +
geom_segment(aes(x = lmode.vline1.cat.x[1],
y = lmode.vline1.cat.y[1],
Expand Down Expand Up @@ -18636,9 +18637,9 @@ lmode.plot.cat <- ggplot(lmo.emp, aes(x = xvalues, y = yvalues)) +
)

lmode.plot.dim <- ggplot(lmo.emp, aes(x = xvalues, y = yvalues)) +
geom_polygon(inherit.aes = FALSE, aes(x = lmode.polygon.dim.x, y = lmode.polygon.dim.y), fill = "#0b5db5") +
geom_line(aes(y = lmode.line1.dim.y), size = 1.2, color = "#0b5db5") +
geom_line(aes(y = lmode.line2.dim.y), size = 1.2, color = "#0b5db5") +
geom_polygon(inherit.aes = FALSE, aes(x = lmode.polygon.dim.x, y = lmode.polygon.dim.y), fill = "#5aa007") +
geom_line(aes(y = lmode.line1.dim.y), size = 1.2, color = "#5aa007") +
geom_line(aes(y = lmode.line2.dim.y), size = 1.2, color = "#5aa007") +
geom_line(size = 1.5) +
geom_segment(aes(x = lmode.vline1.cat.x[1],
y = lmode.vline1.cat.y[1],
Expand Down Expand Up @@ -24867,9 +24868,9 @@ lmode.plot.cat <- ggplot(lmo.emp, aes(x = xvalues, y = yvalues)) +
)

lmode.plot.dim <- ggplot(lmo.emp, aes(x = xvalues, y = yvalues)) +
geom_polygon(inherit.aes = FALSE, aes(x = lmode.polygon.dim.x, y = lmode.polygon.dim.y), fill = "#0b5db5") +
geom_line(aes(y = lmode.line1.dim.y), size = 1.2, color = "#0b5db5") +
geom_line(aes(y = lmode.line2.dim.y), size = 1.2, color = "#0b5db5") +
geom_polygon(inherit.aes = FALSE, aes(x = lmode.polygon.dim.x, y = lmode.polygon.dim.y), fill = "#5aa007") +
geom_line(aes(y = lmode.line1.dim.y), size = 1.2, color = "#5aa007") +
geom_line(aes(y = lmode.line2.dim.y), size = 1.2, color = "#5aa007") +
geom_line(size = 1.5) +
geom_segment(aes(x = lmode.vline1.cat.x[1],
y = lmode.vline1.cat.y[1],
Expand Down

0 comments on commit d6a2e09

Please sign in to comment.