--- title: "第8講 判別分析" subtitle: "基本的な考え方" date: "`r Sys.Date()`" format: html: toc: true html-math-method: katex self-contained: true grid: margin-width: 350px execute: echo: true warning: false reference-location: margin citation-location: margin tbl-cap-location: margin fig-cap-location: margin editor: visual --- ## 準備 以下で利用する共通パッケージを読み込む. ```{r} library(conflicted) # 関数名の衝突を警告 conflicts_prefer( # 優先的に使う関数を指定 dplyr::filter(), dplyr::lag(), dplyr::select(), scales::discard(), recipes::fixed(), yardstick::spec(), recipes::step(), ) library(tidyverse) library(ggfortify) library(ggrepel) library(GGally) library(tidymodels) # モデル評価のためのメタパッケージ library(MASS) library(gt) library(gtsummary) #' macOSのための日本語表示の設定 if(Sys.info()["sysname"] == "Darwin") { # macOSか調べる jp_font <- "HiraMaruProN-W4" theme_update(text = element_text(family = jp_font)) update_geom_defaults("text", list(family = theme_get()$text$family)) update_geom_defaults("label", list(family = theme_get()$text$family)) update_geom_defaults("text_repel", list(family = theme_get()$text$family)) update_geom_defaults("label_repel", list(family = theme_get()$text$family)) } else {jp_font <- NULL} ``` ## データセット 以下のデータセットを使用する ::: callout-note ### `tokyo_weather.csv` の概要 気象庁より取得した東京の気候データを整理したもの - year,month,day,day_of_week : 年,月,日,曜日 - temp : 平均気温(℃) - rain : 降水量の合計(mm) - solar : 合計全天日射量(MJ/㎡) - snow : 降雪量合計(cm) - wdirs : 最多風向(16方位) - wind : 平均風速(m/s) - press : 平均現地気圧(hPa) - humid : 平均湿度(%) - cloud : 平均雲量(10分比) - 参考 : [気象庁](https://www.data.jma.go.jp/gmd/risk/obsdl/index.php) データの読み込み方 ```{r} tw_data <- read_csv("data/tokyo_weather.csv") ``` ::: ## 判別分析に用いる主な関数 判別分析を行うRの標準的な関数として - `MASS::lda()` - `MASS::qda()` がある. 講義で説明するように観測データに関する仮定が異なるが,使い方はほぼ同様であるので, ここで関連する関数をまとめて紹介しておく. ::: callout-note ### 線形判別分析の実行 ``` r lda(formula, data, ..., subset, na.action) #' formula: モデル式 (ラベル ~ 判別に用いる変数) #' data: 必要な情報を含むデータフレーム #' 詳細は '?MASS::lda' を参照 ``` ::: ::: callout-note ### 2次判別分析の実行 ``` r qda(formula, data, ..., subset, na.action) #' formula: モデル式 (ラベル ~ 判別に用いる変数) #' data: 必要な情報を含むデータフレーム #' 詳細は '?MASS::qda' を参照 ``` ::: ::: callout-note ### 結果を得る基本関数 分析結果の概要を確認するには, 関数 `MASS::lda()/qda()` の返値を関数 `base::print()` で単に表示すれば良い. ``` r print(x, ...) #' x: lda/qda クラス #' command line では単に print は書かなくてもよい ``` 関数 `MASS::lda()/qda()` にどのような情報が含まれているかを見るには 関数 `pillar::glimpse()` を利用する. ``` r glimpse(x, width = NULL, ...) #' x: lda/qda クラス #' width: 表示の長さを指定.既定値(NULL)は表示環境が可能な範囲 #' 詳細は '?pillar::glimpse' を参照 #' 関数 utils::str() も同様な働きをする ``` ::: 判別のあてはめ値や予測値は関数 `MASS::predict.lda()/qda()` を利用して得ることができる. ::: callout-note ### 判別結果の取得 ``` r predict(object, newdata, prior = object$prior, dimen, method = c("plug-in", "predictive", "debiased"), ...) #' object: lda クラス #' newdata: 予測の対象とするデータフレーム #' prior: ラベルの事前分布 #' 返値はリスト型で以下の項目がある #' class: 判別関数による予測ラベル #' posterior: ラベルの事後確率 #' x: 判別関数値 #' 詳細は '?MASS::predict.lda' を参照 ``` ``` r predict(object, newdata, prior = object$prior, method = c("plug-in", "predictive", "debiased", "looCV"), ...) #' object: qda クラス #' newdata: 予測対象のデータフレーム.省略すると推定に用いたデータフレーム #' 返値はリスト型で以下の項目がある #' class: 判別関数による予測ラベル #' posterior: ラベルの事後確率 #' 詳細は '?MASS::predict.qda' を参照 ``` ::: 判別結果などをデータフレームとして取得するための関数は 現在のところ`package::broom` には実装されていないので, 関数 `MASS::predict.lda()/qda()` を用いて `tibble` クラスに情報を集約する関数を作成して利用することにする. ::: callout-note ### 分析結果の取得 関数 `tidy()` は汎用関数(generic function)で,第1引数のクラスに依存してその働きを定義できる. 関数 `lda()/qda()` は `lda/qda` クラスを返すので,クラスごとに定義する. 以下はこの回の演習問題のために用いる例であり,必要に応じて自由に改変して構わない. ```{r} #' lda クラス用 tidy.lda <- function(x, type = c("statistic","estimate")){ type <- match.arg(type) lda_stat <- \(x){ # 事前確率およびクラスごとの標本平均 bind_cols(x[["prior"]] |> enframe(value = "prior"), x[["means"]] |> as_tibble() |> rename_with(\(x)paste0(x,"_ave"))) } lda_est <- \(x){ # 推定された判別関数の係数 x[["scaling"]] |> as.data.frame() |> rownames_to_column() |> as_tibble() } switch(type, statistic = lda_stat(x), estimate = lda_est(x)) } #' qda クラス用 tidy.qda <- function(x, type = c("statistic","estimate")){ type <- match.arg(type) qda_stat <- \(x){ # 事前確率およびクラスごとの標本平均 bind_cols(x[["prior"]] |> enframe(value = "prior"), x[["means"]] |> as_tibble() |> rename_with(\(x)paste0(x,"_ave"))) } qda_est <- \(x){ # 分散1共分散0に変換する行列(共分散の-1/2乗)および1/2log_det共分散 bind_cols(x[["scaling"]] |> as.data.frame() |> rownames_to_column() |> as_tibble() |> rename_with(\(x)paste0("scale_",x)), x[["ldet"]] |> as_tibble_col(column_name = "log_det/2")) } switch(type, statistic = qda_stat(x), estimate = qda_est(x)) } ``` ::: ::: callout-note ### 判別のあてはめ値・予測値の計算 関数 `augment()` も汎用関数である. ```{r} #' lda クラス用 augment.lda <- function(x, data = NULL, newdata = NULL) { if(!is.null(newdata)) { tmp <- predict(x, newdata = newdata) } else { tmp <- predict(x) } out <- bind_cols( tmp[["class"]] |> as_tibble_col(column_name = ".class"), tmp[["posterior"]] |> as_tibble() |> rename_with(\(x)paste0(".posterior",x)), tmp[["x"]] |> as_tibble() |> rename_with(\(x)paste0(".x",x)) ) if(!is.null(newdata)) {return(bind_cols(newdata, out))} if(!is.null(data)) {return(bind_cols(data, out))} return(out) } #' qda クラス用 augment.qda <- function(x, data = NULL, newdata = NULL) { if(!is.null(newdata)) { tmp <- predict(x, newdata = newdata) } else { tmp <- predict(x) } out <- bind_cols( tmp[["class"]] |> as_tibble_col(column_name = ".class"), tmp[["posterior"]] |> as_tibble() |> rename_with(\(x)paste0(".posterior",x)), ) if(!is.null(newdata)) {return(bind_cols(newdata, out))} if(!is.null(data)) {return(bind_cols(data, out))} return(out) } ``` ::: 視覚化はこれらの関数で取得したデータフレームを用いて行うことができる. また,関数 `augment()` で得られたあてはめ値や予測値と真の値を比べて正答率を評価するには 関数 `yardstick::conf_mat()` が利用できる. ::: callout-note ### 混同行列の作成 ``` r conf_mat( data, truth, estimate, dnn = c("Prediction", "Truth"), case_weights = NULL, ... ) #' data: データフレーム #' truth: 真値の列 #' estimate: あてはめ値・予測値の列 #' 詳細は '?yardstick::conf_mat' を参照 ``` ::: ## 線形判別 ### 問題 1. 以下の人工データを用いて線形判別分析を行いなさい. ``` r #' 分散共分散が同じ2クラスのデータ n <- 40 toy_data <- bind_rows( tibble(x1 = rnorm(n, mean=2, sd=2), x2 = rnorm(n, mean=1, sd=1), class = rep(1, n)), tibble(x1 = rnorm(n, mean=-2, sd=2), x2 = rnorm(n, mean=-1, sd=1), class = rep(2, n))) |> mutate(class = as_factor(class)) ``` 2. 東京の気候データを用いて以下の分析を行いなさい. - 9月と10月の気温と湿度のデータを抽出する. - 半分のデータを用いて線形判別関数を構成し,残りのデータを用いて判別を行う. ``` r #' 必要なデータの抽出 tw_subset <- tw_data |> filter(month %in% c(9,10)) |> select(temp, humid, month) |> mutate(month = as_factor(month)) # 月を因子化 ``` ``` r #' データの分割の例 idx <- seq(1, nrow(tw_subset), by = 2) # データの分割(1つおき) tw_train <- tw_subset[ idx,] # 訓練データ tw_test <- tw_subset[-idx,] # 試験データ tw_lda <- lda(month ~ temp + humid, data = tw_train) # 線形判別関数の推定 ``` ### 解答欄 ```{r} ``` ### 解答例 #### 人工データ 指示に従ってデータを生成する. ```{r} n <- 40 toy_data <- bind_rows( tibble(x1 = rnorm(n, mean=2, sd=2), x2 = rnorm(n, mean=1, sd=1), class = rep(1, n)), tibble(x1 = rnorm(n, mean=-2, sd=2), x2 = rnorm(n, mean=-1, sd=1), class = rep(2, n))) |> mutate(class = as_factor(class)) ``` 散布図でデータの性質を確認する. ```{r} toy_data |> ggplot(aes(x = x1, y = x2, colour = class)) + geom_point() ``` 判別分析を行う. ```{r} toy_model <- class ~ x1 + x2 toy_lda <- lda(formula = toy_model, data = toy_data) toy_lda # 結果を表示 ``` 判別結果を整理する. ```{r} toy_lda |> tidy() # 推定値を確認 toy_lda |> augment(data = toy_data) # あてはめ値を確認 toy_lda |> augment(data = toy_data) |> conf_mat(truth = class, estimate = .class) # 混同行列 toy_lda |> augment(data = toy_data) |> ggplot(aes(x = .xLD1, fill = class)) + # 判別関数値の視覚化 geom_histogram(aes(y = after_stat(density)), bins = 30) + facet_grid(class ~ .) # クラスごとに表示 ``` ::: column-margin 関数 `autoplot()` を用いると混同行列を視覚化することができる. 詳しくは '?yardstick::conf_mat' を参照のこと. ```{r} toy_lda |> augment(data = toy_data) |> conf_mat(truth = class, estimate = .class) |> autoplot(type = "mosaic") # "mosaic"(既定値)か"heatmap"が指定できる ``` ::: 推定された線形判別関数の識別境界を図示する. ```{r} range_x <- range(toy_data[["x1"]]) # x1の範囲 range_y <- range(toy_data[["x2"]]) # x2の範囲 toy_grid_x <- pretty(range_x, 100) # 格子点の作成 toy_grid_y <- pretty(range_y, 100) toy_grid_xy <- expand.grid(x1 = toy_grid_x, # 2次元の格子点を作成 x2 = toy_grid_y) toy_lda |> augment(newdata = toy_grid_xy) |> # 格子点上の判別関数値を計算 ggplot(aes(x = x1, y = x2)) + # 予測されるラベルの図示 geom_tile(aes(fill = .class), alpha = 0.3) + labs(fill = NULL) ``` 上記の図にデータ点を重ね描きする. ```{r} last_plot() + geom_point(data = toy_data, aes(x = x1, y = x2, colour = class)) + labs(colour = NULL) ``` ::: column-margin 判別関数値を色づけして図示するには以下のようにすればよい. ```{r} toy_lda |> augment(newdata = toy_grid_xy) |> ggplot(aes(x = x1, y = x2)) + geom_raster(aes(fill = .xLD1), alpha = 0.5) + scale_fill_gradientn(colours=c("red","white","blue")) + geom_point(data = toy_data, aes(x = x1, y = x2, colour = class)) + labs(fill = NULL, colour = NULL) ``` ::: ------------------------------------------------------------------------ #### 東京の気候データ 必要なデータを整理する. ```{r} tw_data <- read_csv("data/tokyo_weather.csv") tw_subset <- tw_data |> filter(month %in% c(9,10)) |> # 9,10月のデータ select(temp, humid, month) |> # 気温・湿度・月を選択 mutate(month = as_factor(month)) # 月を因子化 idx <- seq(1, nrow(tw_subset), by = 2) # データの分割(1つおき) tw_train <- tw_subset[ idx,] # 訓練データ(推定に用いる) tw_test <- tw_subset[-idx,] # 試験データ(評価に用いる) ``` ::: column-margin ランダムに分割するには例えば以下のようにすれば良い. ``` r n <- nrow(tw_subset); idx <- sample(1:n, n/2) ``` ::: ::: column-margin 関数 `lubridate::month()` を用いれば月を文字列(因子)とすることもできる. ``` r mutate(month = month(month, label = TRUE)) ``` 以下のようにして最初に月を因子化することもできるが,関数によっていは処理で使われない因子(例えば1月)も表示してしまうので注意が必要である. ``` r read_csv("data/tokyo_weather.csv") |> mutate(month = as_factor(month)) ``` また複数の項目をそれぞれ因子化するには例えば以下のようにすればよい. ``` r mutate(across(c(year, month, day), as_factor)) ``` ::: 気温と湿度の散布図を作成して,データを視覚化する. ```{r} tw_subset |> ggplot(aes(x = temp, y = humid)) + geom_point(aes(colour = month)) + # 月ごとに点の色を変える labs(x = "Temperature", y = "Humidity", title = "September & October") ``` 訓練データを用いて線形判別関数(等分散性を仮定)を作成する. ```{r} tw_model <- month ~ temp + humid tw_lda <- lda(formula = tw_model, data = tw_train) ``` 判別関数によるクラス分類結果を確認する. ```{r} tw_lda |> augment(data = tw_train) # 訓練データのあてはめ値を取得 tw_lda |> augment(data = tw_train) |> conf_mat(truth = month, estimate = .class) # 混同行列 tw_lda |> augment(data = tw_train) |> ggplot(aes(x = .xLD1, fill = month)) + # 判別関数値の視覚化 geom_histogram(aes(y = after_stat(density)), bins = 30) + facet_grid(month ~ .) # 月ごとに表示(y方向に並べる) ``` ::: column-margin 関数 `base::table()` で混同行列を作ることはできる.表の向きは引数の順序で制御できる. ```{r} table(Truth = tw_train[["month"]], Prediction = predict(tw_lda)[["class"]]) ``` ::: 試験データによる評価を行う. ```{r} tw_lda |> augment(newdata = tw_test) |> # 試験データの予測値を取得 conf_mat(truth = month, estimate = .class) # 混同行列 tw_lda |> augment(newdata = tw_test) |> ggplot(aes(x = .xLD1, fill = month)) + # 判別関数値の視覚化 geom_histogram(aes(y = after_stat(density)), bins = 30) + facet_grid(month ~ .) ``` 推定された線形判別関数の識別境界を図示する. ```{r} range_x <- range(tw_subset[["temp"]]) # 気温の値域 range_y <- range(tw_subset[["humid"]]) # 湿度の値域 grid_x <- pretty(range_x, 100) # 気温の値域の格子点を作成 grid_y <- pretty(range_y, 100) # 湿度の値域の格子点を作成 grid_xy <- expand.grid(temp = grid_x, humid = grid_y) # 2次元の格子点を作成 tw_lda |> augment(newdata = grid_xy) |> # 格子点上の判別関数値を計算 ggplot(aes(x = temp, y = humid)) + # 判別関数により予測されるラベルの図示 geom_tile(aes(fill = .class), alpha = 0.3) + geom_point(data = tw_subset, aes(x = temp, y = humid, colour = month)) + labs(x = "気温", y = "湿度", fill = NULL, colour = NULL, title = "線形判別分析") ``` ## 2次判別 ### 問題 1. 以下の人工データを用いて線形判別分析を行いなさい. ``` r #' 分散共分散が異なる2クラスのデータ n <- 40 toy_data <- bind_rows( tibble(x1 = rnorm(n, mean=2, sd=2), x2 = rnorm(n, mean=0, sd=3), class = rep(1, n)), tibble(x1 = rnorm(n, mean=-2, sd=2), x2 = rnorm(n, mean=0, sd=1), class = rep(2, n))) |> mutate(class = as_factor(class)) ``` 2. 東京の気候データを用いて以下の分析を行いなさい. - 前問と同様な設定で2次判別を行いなさい. - 別の月や変数を用いて判別分析を行いなさい. ``` r #' 2次判別関数の推定 tw_qda <- qda(month ~ temp + humid, data = tw_train) ``` ### 解答欄 ```{r} ``` ### 解答例 #### 人工データ 指示に従ってデータを生成する. ```{r} n <- 40 toy_data <- bind_rows( tibble(x1 = rnorm(n, mean=2, sd=2), x2 = rnorm(n, mean=0, sd=3), class = rep(1, n)), tibble(x1 = rnorm(n, mean=-2, sd=2), x2 = rnorm(n, mean=0, sd=1), class = rep(2, n))) |> mutate(class = as_factor(class)) ``` 散布図でデータの性質を確認する. ```{r} toy_data |> ggplot(aes(x = x1, y = x2, colour = class)) + geom_point() ``` 判別分析を行う. ```{r} toy_model <- class ~ x1 + x2 toy_qda <- qda(formula = toy_model, data = toy_data) toy_qda # 結果を表示 ``` 判別結果を確認する. ```{r} toy_qda |> tidy() # 推定値を確認 toy_qda |> augment(data = toy_data) # あてはめ値を確認 toy_qda |> augment(data = toy_data) |> conf_mat(truth = class, estimate = .class) # 混同行列 ``` 推定された線形判別関数の識別境界を図示する. ```{r} range_x <- range(toy_data[["x1"]]) # x1の範囲 range_y <- range(toy_data[["x2"]]) # x2の範囲 toy_grid_x <- pretty(range_x, 100) # 格子点の作成 toy_grid_y <- pretty(range_y, 100) toy_grid_xy <- expand.grid(x1 = toy_grid_x, # 2次元の格子点を作成 x2 = toy_grid_y) toy_qda |> augment(newdata = toy_grid_xy) |> # 格子点上の判別関数値を計算 ggplot(aes(x = x1, y = x2)) + # 予測されるラベルの図示 geom_tile(aes(fill = .class), alpha = 0.3) + geom_point(data = toy_data, aes(x = x1, y = x2, colour = class)) + labs(fill = NULL, colour = NULL) ``` ------------------------------------------------------------------------ #### 東京の気候データ 前の練習問題で作成した `tw_train` および `tw_test` を利用する. まず,訓練データで2次判別関数(等分散性を仮定しない)を作成する. 線形判別関数と同じモデル式を用いる. ```{r} tw_qda <- qda(formula = tw_model, data = tw_train) tw_qda |> augment(data = tw_train) |> # 判別関数によるクラス分類結果の取得 conf_mat(truth = month, estimate = .class) # 混同行列 ``` 試験データによる評価を行う. ```{r} tw_qda |> augment(newdata = tw_test) |> conf_mat(truth = month, estimate = .class) ``` ```{r} tw_qda_predict <- predict(tw_qda, newdata = tw_test) table(true = tw_test[["month"]], # 混同行列 predict = tw_qda_predict[["class"]]) tibble(true = tw_test[["month"]]) |> # 比較表 mutate(predict = tw_qda_predict[["class"]]) ``` 推定された2次判別関数を図示する. ```{r} tw_qda |> augment(newdata = grid_xy) |> # 格子点上の判別関数値を計算 ggplot(aes(x = temp, y = humid)) + # 判別関数により予測されるラベルの図示 geom_tile(aes(fill = .class), alpha = 0.3) + geom_point(data = tw_subset, aes(x = temp, y = humid, colour = month)) + labs(x = "気温", y = "湿度", fill = NULL, colour = NULL, title = "2次判別分析") ``` ## 多値判別 ### 問題 1. 東京の気候データを用いて以下の分析を行いなさい. - 9月,10月,11月の気温と湿度のデータを用いて判別関数を作成しなさい. - 別の月や変数を用いて判別分析を行いなさい. ``` r #' 9-11月のデータを整理 tw_subset <- tw_data |> filter(month %in% c(9,10,11)) |> select(temp, humid, month) |> mutate(month = as_factor(month)) ``` ``` r #' 雨の有無を識別する例 tw_subset2 <- tw_data |> mutate(rain = factor(rain > 0), month = as_factor(month)) |> # 雨の有無でラベル化する select(rain, temp, solar, wind, month) tw_lda2 <- lda(rain ~ ., data = tw_subset2) # 'rain' をそれ以外で判別 ``` ### 解答欄 ```{r} ``` ### 解答例 3値判別のためにデータの整理を行う. ```{r} tw_subset3 <- tw_data |> filter(month %in% c(9,10,11)) |> select(temp, humid, month) |> mutate(month = as_factor(month)) ``` 線形判別関数(3値)を作成する. ```{r} tw_lda3 <- lda(formula = tw_model, data = tw_subset3) tw_lda3 |> augment(data = tw_subset3) |> # 判別関数によるクラス分類結果の取得 conf_mat(truth = month, estimate = .class) # 混同行列 ``` 推定された線形判別関数(3値)により予測されるラベルを図示する. 格子点は再計算する必要があるので注意する. ```{r} range_x <- range(tw_subset3[["temp"]]) # 気温の値域 range_y <- range(tw_subset3[["humid"]]) # 湿度の値域 grid_x <- pretty(range_x, 100) # 気温の値域の格子点を作成 grid_y <- pretty(range_y, 100) # 湿度の値域の格子点を作成 grid_xy <- expand.grid(temp = grid_x, humid = grid_y) # 2次元の格子点を作成 tw_lda3 |> augment(newdata = grid_xy) |> # 格子点上の判別関数値を計算 ggplot(aes(x = temp, y = humid)) + geom_tile(aes(fill = .class), alpha = 0.3) + geom_point(data = tw_subset3, aes(x = temp, y = humid, colour = month)) + labs(x = "気温", y = "湿度", fill = NULL, colour = NULL, title = "多値判別分析") ``` 3値判別の場合には2つの判別関数を構成するので,これを用いてデータ点の散布図を作成することができる. ```{r} tw_lda3 |> augment(data = tw_subset3) |> # 格子点上の判別関数値を計算 ggplot(aes(x = .xLD1, y = .xLD2)) + geom_point(aes(colour = month)) + # 月ごとに色を変更 labs(colour = NULL) ``` ::: column-margin 関数 `geom_tile()` が座標軸に沿った格子点を想定しているため,判別関数値の散布図上で判別境界とデータ点を表示するには工夫が必要となる.ここでは関数 `geom_point()` で代用した簡便な例を示す. ```{r} last_plot() + geom_point(data = augment(tw_lda3, newdata = grid_xy), aes(colour = .class), alpha = 0.1) ``` ::: ------------------------------------------------------------------------ 12ヶ月分のデータを用いる.数が多いのでサンプリングする. ```{r} idx <- sample(nrow(tw_data), 100) tw_subset12 <- slice(tw_data, idx) |> mutate(month = as_factor(month)) tw_lda12 <- lda(month ~ temp + solar + wind + humid, data = tw_subset12) tw_lda12 |> augment(data = tw_subset12) |> conf_mat(truth = month, estimate = .class) |> # 混同行列 autoplot("heatmap") tw_lda12 |> augment(data = tw_subset12) |> select(month,starts_with(".x")) |> ggpairs(aes(colour = month), upper = list(continuous = wrap("cor", size = 1.5))) + theme(aspect.retio = 1) ``` 判別関数は説明変数の数までしか作成できないので,精度はあまり高くないことがわかる. ------------------------------------------------------------------------ 雨の有無を識別する例は以下のようになる. ```{r} tw_rain <- tw_data |> mutate(rain = factor(rain > 0), # 雨の有無でラベル化する month = as_factor(month)) # 月ごとの気候の違いの補正のため tw_rain_lda <- lda(rain ~ temp + solar + wind + month, data = tw_rain, subset = idx) # 一部のデータで推定する例 tw_rain_lda |> # 判別関数値の視覚化 augment(data = tw_rain |> slice(idx)) |> ggplot(aes(x = .xLD1, fill = rain)) + geom_histogram(aes(y = after_stat(density)), bins = 30) + facet_grid(rain ~ .) ``` 予測の精度を検証する. ```{r} tw_rain_lda |> augment(data = tw_rain |> slice(idx)) |> # 推定に用いたデータの混同行列 conf_mat(truth = rain, estimate = .class) tw_rain_lda |> augment(newdata = tw_rain |> slice(-idx)) |> # 未知データに対する予測の混同行列 conf_mat(truth = rain, estimate = .class) ```