Получить список всех 657 цветов в программировании на R - функция colors ()
Опубликовано: 17 Февраля, 2022
colors()
function in R Language is used to show all the 657 color names that are contained in R programming.
Syntax: colors()
Parameters:
Does not accept any parameters.
Example 1:
# R program to illustrate # colors function # Calling the colors() function # to show all the 657 colors that # names are contained in # R programming colors() |
Выход:
[1] «белый» «алисиновый» «антиквебелый» [4] «antiquewhite1» «antiquewhite2» «antiquewhite3» [7] «antiquewhite4» «аквамарин» «аквамарин1» ... ... [655] "желтый3" "желтый4" "желто-зеленый"
Example 2:
# R program to illustrate # colors function # Calling the colors() function # with specific serial number of # color names contained in R # Prgramming colors()[ 1 ] colors()[ 3 ] colors()[ 10 ] colors()[ 655 ] colors()[ 656 ] |
Выход:
[1] «белый» [1] «белый антикв» [1] "аквамарин2" [1] "желтый3" [1] "желтый4"