-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02coloring.R
59 lines (50 loc) · 1.45 KB
/
02coloring.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# visual customizations for plots
# create label for chlorophyll plots
chla_y_title <- expression(paste("Chlorophyll ", italic("a "), mu*"g/L"))
# create label for phosphorus plots
phos_y_title <- expression(paste("Total Phosphorus mg/L"))
# create label for nitrogen plots
nitro_y_title <- expression(paste("Total Nitrogen mg/L"))
# create label for fecal plots
fecal_y_title <- expression(paste("Fecal coliform CFU/100mL"))
# create label for enterococcus plots
entero_y_title <- expression(paste("Enterococcus MPN/100mL"))
# create label for temperature title
temp_y_title <- expression(paste("Temperature ("~degree*C*")"))
# create color palette for sites
sitecolours <- c(
Micklers = "#F8766D",
`GL1` = "#D89000",
`GL2` = "#A3A500",
`Lake Middle` = "#39B600",
`GL4` = "#00BF7D",
`Lake South` = "#00BFC4",
`River North` = "#00B0F6",
`GR1` = "#9590FF",
`Guana River` = "#E76BF3",
`GR3` = "#FF62BC"
)
## split site colors for LAKE v RIVER graphing
sitecolours1 <- c(
Micklers = "#F8766D",
`GL1` = "#D89000",
`GL2` = "#A3A500",
`Lake Middle` = "#39B600",
`GL4` = "#00BF7D",
`Lake South` = "#00BFC4")
sitecolours2 <- c(
`River North` = "#00B0F6",
`GR1` = "#9590FF",
`Guana River` = "#E76BF3",
`GR3` = "#FF62BC"
)
# create a site specific color palette??
depcolours <- c(
`GL1` = "#D89000",
`GL2` = "#A3A500",
`Lake Middle` = "#39B600",
`GL4` = "#00BF7D",
`GR1` = "#9590FF",
`Guana River` = "#E76BF3",
`GR3` = "#FF62BC"
)