gender region edu income
Min. :1.000 Min. :1.000 Min. :1.000 Min. :1.000
1st Qu.:1.000 1st Qu.:1.000 1st Qu.:1.000 1st Qu.:1.000
Median :1.000 Median :1.000 Median :2.000 Median :2.000
Mean :1.341 Mean :2.052 Mean :1.867 Mean :2.209
3rd Qu.:2.000 3rd Qu.:3.000 3rd Qu.:2.000 3rd Qu.:3.000
Max. :2.000 Max. :5.000 Max. :3.000 Max. :4.000
age score_gov score_progress score_intention
Min. :1.000 Min. :1.000 Min. :1.000 Min. :1.000
1st Qu.:2.000 1st Qu.:3.000 1st Qu.:2.000 1st Qu.:2.400
Median :3.000 Median :3.000 Median :3.000 Median :3.000
Mean :2.654 Mean :3.057 Mean :3.095 Mean :2.911
3rd Qu.:3.000 3rd Qu.:4.000 3rd Qu.:4.000 3rd Qu.:3.400
Max. :4.000 Max. :5.000 Max. :5.000 Max. :5.000
vote
Min. :0.0000
1st Qu.:0.0000
Median :1.0000
Mean :0.7109
3rd Qu.:1.0000
Max. :1.0000
train/test 데이터 나누기
1
install.packages("caret")
1
2
3
4
5
6
7
8
9
There is a binary version available but the source version is later:
binary source needs_compilation
caret 6.0-86 6.0-90 TRUE
Binaries will be installed
Warning message:
"package 'caret' is in use and will not be installed"
1
install.packages("recipes",type='binary')
1
2
3
4
5
6
7
8
9
There is a binary version available (and will be installed) but the
source version is later:
binary source
recipes 0.1.16 0.1.17
package 'recipes' successfully unpacked and MD5 sums checked
The downloaded binary packages are in
C:\Users\MyCom\AppData\Local\Temp\RtmpEpSDhK\downloaded_packages
1
install.packages("dplyr")
1
2
3
4
5
6
7
8
9
There is a binary version available but the source version is later:
binary source needs_compilation
dplyr 1.0.6 1.0.7 TRUE
Binaries will be installed
package 'dplyr' successfully unpacked and MD5 sums checked
The downloaded binary packages are in
C:\Users\MyCom\AppData\Local\Temp\RtmpEpSDhK\downloaded_packages
1
2
library(caret)library(dplyr)
1
2
3
4
5
6
7
8
9
10
11
12
Warning message:
"package 'caret' was built under R version 3.6.3"Warning message:
"package 'dplyr' was built under R version 3.6.3"
Attaching package: 'dplyr'
The following objects are masked from 'package:stats':
filter, lag
The following objects are masked from 'package:base':
intersect, setdiff, setequal, union
There is a binary version available but the source version is later:
binary source needs_compilation
class 7.3-19 7.3-20 TRUE
Binaries will be installed
package 'class' successfully unpacked and MD5 sums checked
Warning message:
"cannot remove prior installation of package 'class'"Warning message in file.copy(savedcopy, lib, recursive = TRUE):
"C:\Users\MyCom\anaconda3\Lib\R\library\00LOCK\class\libs\x64\class.dll를 C:\Users\MyCom\anaconda3\Lib\R\library\class\libs\x64\class.dll로 복사하는데 문제가 발생했습니다: Permission denied"Warning message:
"restored 'class'"
The downloaded binary packages are in
C:\Users\MyCom\AppData\Local\Temp\RtmpEpSDhK\downloaded_packages
Leave a comment