Analysis in R: Useful for color management “chroma” package

RAnalytics
スポンサーリンク

Color schemes are one of the most difficult things to worry about when presentetion. Here is a package that can help you solve your problem.

The color “#4b61ba” used is similar to the color used in Danmachi’s “God’s Example String”.

In addition, here are some color codes that can be used for color schemes in presentation materials.

・Playing with R: Could it be used for color schemes in presentation materials? Character hair color?
 https://www.karada-good.net/analyticsr/r-83/

Package version is 0.2. Checked with R version 4.2.2.


スポンサーリンク

Install Package

Run the following command.

#Install Package
install.packages("devtools")
devtools::install_github("jiho/chroma")

Example

See the command and package help for details.

#Loading the library
library("chroma")

#Plot the specified color:show_col command
#Array is x-directional, separated by "," is y-directional
show_col(c("#e1e6ea", "#505457"), c("#4b61ba", "#a87963"))

#Saturation adjustment:saturate,desaturate command
#Saturation range:amount option;1-10
n <- "#4b61ba"
show_col(c(saturate(n, amount = 5), n, desaturate(n, amount = 5)))

#Color channel:channel command
#Color channel:model option;rgb,hsv,hsl,hcl,lch,lab,cmyk
channel(x = "#4b61ba", model = "rgb", channel = "g")
g
97

#Enter CMYK numbers to obtain color code:cmyk command
cmyk(c = .3, m = .2, y = 0.6, k = 0.1)
[1] "#a1b85c"
#check
show_col("#a1b85c")

#Color temperature:color_temperature command
show_col(color_temperature(5200))

Output Example

・show_col command

show_col

・saturate,desaturate command

saturate,desaturate

・cmyk command

cmyk

・color_temperature command

color_temperature

I hope this makes your analysis a little easier !!

Amazon audibleの登録の紹介

プライム会員限定で2024年7月22日まで3か月無料体験キャンペーン開催中です。無料体験後は月額1,500円で聞き放題です。なお、聞き放題対象外の本はAudible会員であれば非会員価格の30%引きで購入することが可能です。

Amazon audibleはプロのナレーターが朗読した本をアプリで聞くことができるサービスで、オフライン再生も可能です。通勤や作業のお供にAmazon audibleのご登録はいかがでしょうか。

・AmazonのAudible

https://amzn.to/3L4FI5o

Copied title and URL