2017-01-01から1年間の記事一覧

東京大学松尾准教授によるディープランニングに関する講演

前編 www.youtube.com 後編 www.youtube.com 今後ディープランニングを応用したビジネスはまだまだ増えるのかな?

Rでデータ分析 階層的クラスター分析

階層的クラスター分析 階層的クラスター分析は、データの2つの近い点をまとめていくものであるが、 距離の計算において異なる以下の6つの手法を紹介する 1.単連結法(最短距離方):1番短い距離を利用する 2.完全連結法(最長距離法):1番長い距離…

Rでデータ分析 カラム名を変更する

#We always use this kind of method to rename the colnames #But, sometime we want to only change the specific column name names(x) <- c("a","b","c") #let's try it #First, I will create the data > sex <- c("F","F","F","M","M") > height <- c(…