Funkcja ta zwraca (obrobioną lub nie) listę kolumn oraz dane testowe (25%) i treingowe (75%). Funkcja domyślnie zwraca obrobione dane. Aby funkcja zwracała surowe dane należy wywołać ją z argumentem raw="true". Obrobienie danych polega na usunięciu mniej istotnych kolumn za pomocą funkcji step().
1 |
1 2 3 4 5 6 7 8 9 | # Dane obrobione
kolumny = dataMtcars()$columns
train = dataMtcars()$train
test = dataMtcars()$test
# Dane surowe
kolumny = dataMtcars(raw="true")$columns
train = dataMtcars(raw="true")$train
test = dataMtcars(raw="true")$test
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.