0
這個用於機器學習的數據庫已被分成兩個文件,German.data用於所有的值,另一個是描述文件,這裏是鏈接。 https://archive.ics.uci.edu/ml/machine-learning-databases/statlog/german/?C=D;O=A,如何從word文件中將相關信息檢索到R? 使其成爲一個列表,其中包含所有屬性作爲其元素,並在每個元素中包含其因素。從word文件中檢索數據
這個用於機器學習的數據庫已被分成兩個文件,German.data用於所有的值,另一個是描述文件,這裏是鏈接。 https://archive.ics.uci.edu/ml/machine-learning-databases/statlog/german/?C=D;O=A,如何從word文件中將相關信息檢索到R? 使其成爲一個列表,其中包含所有屬性作爲其元素,並在每個元素中包含其因素。從word文件中檢索數據
這是從GitHub拉:
url <- "https://archive.ics.uci.edu/ml/machine-learning-databases/statlog/german/german.data"
col.names <- c(
'Status of existing checking account', 'Duration in month', 'Credit history'
, 'Purpose', 'Credit amount', 'Savings account/bonds'
, 'Employment years', 'Installment rate in percentage of disposable income'
, 'Personal status and sex', 'Other debtors/guarantors', 'Present residence since'
, 'Property', 'Age in years', 'Other installment plans', 'Housing', 'Number of existing credits at this bank'
, 'Job', 'Number of people being liable to provide maintenance for', 'Telephone', 'Foreign worker', 'Status'
)
data <- read.csv(
url
, header=FALSE
, sep=' '
, col.names=col.names
)