-
Notifications
You must be signed in to change notification settings - Fork 0
/
colour_scheme.R
34 lines (32 loc) · 898 Bytes
/
colour_scheme.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
# A useful coloour scheme for R plots such as UMAP
# this is probably the best colour scheme
color.panel = c("#73CA6F",
"#AF75CE",
"#C5916F",
"#ABC0D4",
"#ECEAC5",
"#C49CA4",
"#C66FA0",
"#706EC4",
"#DDCDE3",
"#7395C3",
"#ACA1DC",
"#E5C8BB",
"#C96C69",
"#FFFF66",
"#99ff99",
"#C1AE76",
"#C4E6E3",
"#C3D37B",
"#BCE9BD",
"#7ABB9B",
"#583612",
"#1940d3",
"grey70",
"khaki1",
"lightyellow",
"orchid4",
"lavender",
"tan3",
"snow3")
##