La función colors() en R Language se usa para mostrar todos los 657 nombres de colores que están contenidos en la programación R.
Sintaxis: colors()
Parámetros:
No acepta ningún parámetro.
Ejemplo 1:
Python3
# R program to illustrate # colors function # Calling the colors() function # to show all the 657 colors that # names are contained in # R programming colors()
Producción:
[1] "white" "aliceblue" "antiquewhite" [4] "antiquewhite1" "antiquewhite2" "antiquewhite3" [7] "antiquewhite4" "aquamarine" "aquamarine1" ... ... [655] "yellow3" "yellow4" "yellowgreen"
Ejemplo 2:
Python3
# R program to illustrate # colors function # Calling the colors() function # with specific serial number of # color names contained in R # Programming colors()[1] colors()[3] colors()[10] colors()[655] colors()[656]
Producción:
[1] "white" [1] "antiquewhite" [1] "aquamarine2" [1] "yellow3" [1] "yellow4"
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA