Analysis in R: “CatterPlot” package: SCATTER PLOT with cat symbols!
This package is for those who want to create scatter charts with cat symbols. I don’t know if it rhymes, but the “s” in “scatter” has been removed and it’s “catter”. The cat symbols seem to be added from time to time.
The code for saving, loading, and plotting images in the package may be helpful.
・GitHub:Gibbsdavidl/CatterPlot
https://github.com/Gibbsdavidl/CatterPlot
Package version is 0.0.2. Checked with R version 4.2.2.
<おすすめのRに関する書籍です>
RとRStudioによる教育テストデータの分析 | 堀 一輝, 福原 弘岳, 山田 剛史
Amazonで堀 一輝, 福原 弘岳, 山田 剛史のRとRStudioによる教育テストデータの分析。アマゾンならポイント還元本が多数。
Install Package
Run the following command.
#Install Package
install.packages("devtools")
devtools::install_github("Gibbsdavidl/CatterPlot")スポンサーリンク
Example
See the command and package help for details.
#Loading the library
library("CatterPlot")
#Plotting symbols with cats:catplot command
#Specify symbol type:catmode;
par(mfrow=c(2,2))
for(n in seq(length(catdat))){
catplot((1:10), (1:10), size = 0.2, catmode = n, title = paste0("Cat No.", n))
}Output Example
・Cat No.1-4
・Cat No.5-8
・Cat No.9-11
I hope this makes your analysis a little easier !!
<おすすめのRに関する書籍です>
初心者でもすぐにできるフリー統計ソフトEZR(Easy R)で誰でも簡単統計解析(改訂第2版) | 神田善伸
Amazonで神田善伸の初心者でもすぐにできるフリー統計ソフトEZR(Easy R)で誰でも簡単統計解析(改訂第2版)。アマゾンならポイント還元本が多数。
このコードの続きをAIに聞く
スポンサーリンク


