Home

Awesome

lifecycle CRAN_Status_Badge License: MIT GitHub clones

Install package

Install the package using the following commands <img align="right" src="ReadMEFigures/new_logo_ltc.png" width=400>

# for now, you can install the developmental version of ltc
# first you need to install the devtools package 
# in case you have not already installed
install.packages("devtools") 
# and load it
library(devtools)

# Then you can install the dev version of the ltc
install_github("loukesio/ltc_palettes")
# and load it
library(ltc)
<img src="ReadMEFigures/all_colors_ltc.png" width=1000>

How can I use the ltc package?

Show all palettes

names(palettes)
#>  [1] "paloma"     "maya"       "dora"       "ploen"      "olga"      
#>  [6] "mterese"    "gaby"       "franscoise" "fernande"   "sylvie"    
#> [11] "crbhits"    "expevo"     "minou"      "kiss"       "hat"       
#> [16] "reading"    "ten_colors" "alger"      "trio1"      "trio2"     
#> [21] "trio3"      "trio4"      "heatmap"    "pantone23"

<sup>Created on 2023-09-03 with reprex v2.0.2</sup>

Choose the palette you like and print it

alger <- ltc("alger") #in this case you select alger
pltc(alger)
<img src="ReadMEFigures/alger.png" width=450>
library(ltc)
pantone23 <- ltc("pantone23")
bird(pantone23)
<img src="ReadMEFigures/pantone_bird_ltc.png" width=450>

<sup>Created on 2023-09-03 with reprex v2.0.2</sup>

Test how the palette looks like in plots...

library(ggplot2)
library(ltc)
pal=ltc("heatmap",10,"continuous")

ggplot(data.frame(x = rnorm(1e4), y = rnorm(1e4)), aes(x = x, y = y)) +
  geom_hex() +
  coord_fixed() +
  scale_fill_gradientn(colours = pal) +
  theme_void()
<img src="ReadMEFigures/hexagon_plot_ltc.png" width=450>

<sup>Created on 2023-09-03 with reprex v2.0.2</sup>

library(ltc)
library(ggplot2)
pal=ltc("alger",5,"continuous")

ggplot(diamonds, aes(price, fill = cut)) +
  geom_histogram(binwidth = 500, position = "fill") +
  scale_fill_manual(values = pal) +
  theme_bw() +
  theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank())
<img src="ReadMEFigures/histogram_plot_ltc.png" width=450>

<sup>Created on 2023-09-03 with reprex v2.0.2</sup>

library(ltc)
pal=ltc("maya",7,"continuous")
plts(pal, main = "maya")
<img src="ReadMEFigures/line_plot_ltc.png" width=450>

<sup>Created on 2023-09-03 with reprex v2.0.2</sup>

library(ltc)
pal=ltc("mterese",500,"continuous")
plts(col2transparent(pal, 75))
plts(pal, main = "mterese")
<img src="ReadMEFigures/transparency_blend_ltc.png" width=450>

<sup>Created on 2023-09-03 with reprex v2.0.2</sup>

Contributions

Loukas Theodosiou (theoodosiou@evolbio.mpg.de) and Kristian Ullrich (ullrich@evolbio.mpg.de) have contributed to the development of this package. We have drawn inspiration from the drawings and life of Pablo Picasso as well as from the following books

<p float="left"> <img src="ReadMEFigures/book1.jpeg" width="100" /> <img src="ReadMEFigures/book2.jpeg" width="100" /> </p>