データサイエンティスト上がりのDX参謀・起業家

データサイエンティスト上がりのDX参謀・起業家のブログ。データ分析や事業について。自身はアーティスト、経営者、事業家。

データ解析

バイナリデータでリスクパターンの探索

利用ライブラリ:library(ggplot2) 主な関数 :ggplot(Data, aes(xmin=, xmax=, ymin=, ymax=, fill=)) + geom_rect(alpha=) + scale_x_continuous(breaks=, labels=); ifelse(), paste(, sep="") table() 検査項目を2値に落としてパターンを探索してみた。5…

健診データのクラスタリング

利用ライブラリ:library(gplots); library(ggplot2) 主な関数 :heatmap.2(Data, density.info="none", trace="none", hclustfun=function(d) hclust(d, method="ward")); ggplot() + geom_rect() + scale_x_continuous() 健診データをクラスタリングしてみ…