Analysis in R: ‘DataExplorer’ package for a simple browser view of data content
This package allows you to easily check the data content in a browser. It is also possible to check data size, composition and NA values, which may be useful. It may be useful in combination with the “openxlsx” package, which reads Excel files.
Package version is 0.8.2. Checked with R version 4.2.2.
<おすすめのRに関する書籍です>
R統計解析パーフェクトマスター(R4完全対応)[統計&機械学習第2版]
R4に対応した網羅的な解説書。統計解析と機械学習の両方をカバーする。
Install Package
Run the following command.
#Install Package
install.packages("DataExplorer")スポンサーリンク
Example
See the command and package help for details.
#Loading the library
library("DataExplorer")
library("tcltk")
###Creating Data#####
n = 100
TestData <- data.frame(Group = sample(c(paste0("Group", 1:5), NA), n, replace = TRUE),
Data1 = sample(c(0:1, NA), n, replace = TRUE),
Data2 = rnorm(n),
Data3 = rnorm(n))
########
#Creating reports: create_report command
#Specify output file name: output_file option
#Output using the 'tcltk' package
create_report(TestData, output_file = "report.html",
output_dir = paste(as.character(tkchooseDirectory(title = "Select Folder"),
sep = "", collapse ="")))Output Example
I hope this makes your analysis a little easier !!
スポンサーリンク