-
-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
For those who came here looking for a Python colorcet implementation, you'll find the Glasbey palettes missing.
These can be converted quite easily though. Download the assets folder from colorcet then:
GlasbeyCsvDir <- r"(...\)"
fn <- glue("{GlasbeyCsvDir}glasbey_hv_n256.csv")
data <- readr::read_csv( fn,
col_names = c("R", "G", "B"),
col_types = c("d", "d", "d")
)
glPal <- rgb(data)
Not as convenient as the cetcolor package of course.
Metadata
Metadata
Assignees
Labels
No labels