Install
##
## Attaching package: 'scales'
## The following object is masked from 'package:purrr':
##
## discard
## The following object is masked from 'package:readr':
##
## col_factor
Este documento ofrece unos ejemplos de como usar diferentes palettas de color en sus gráficos.
El nombre del paquete es “Scientific Journal and Sci-Fi Themed Color Palettes for ggplot2” y fue escrito por Nan Xiao.
Hay diferentes tipos de palettas ajustado a diferentes revistas científicas.
Palettas principales
American Association for the Advancement of Science
## Warning: This manual palette can handle a maximum of
## 10 values. You have supplied 15
Catalogue of Somatic Mutations in Cancer (COSMIC)
library("scales")
# Color palettes = "hallmarks_light", "hallmarks_dark", "signature_substitutions"
show_col(pal_cosmic("hallmarks_dark")(10))
https://cancer.sanger.ac.uk/cosmic
D3.js Color Palettes
# colour_palettes= "category10", "category20", "category20b", "category20c"
show_col(pal_d3("category20b")(15))
https://github.com/d3/d3-3.x-api-reference/blob/master/Ordinal-Scales.md
Frontiers Color Palettes
GSEA Gene Pattern Color Palettes
Puedes crear tu propia palettas usando los códigos de los colores, por ejemplo usando este enlace
Crear una paletta sencilla
miscolores <- colorRampPalette(colors =c("#623dc2", "#53bc43", "#d22d2d", "#30a3cf","white" ))(5)
# nota el valor al final es cuant colores tiene en su paletta.
miscolores
## [1] "#623DC2" "#53BC43" "#D22D2D" "#30A3CF" "#FFFFFF"
Ahora usarlos en una gráfica