x: DataFrame stadard of R, which represents cars

Description Usage Format Examples

Description

DataFrame of carts wich containts continious and categorical features

Usage

1
data("x")

Format

A data frame with 32 observations on the following 11 variables.

mpg

a numeric vector

cyl

a numeric vector

disp

a numeric vector

hp

a numeric vector

drat

a numeric vector

wt

a numeric vector

qsec

a numeric vector

vs

a factor with levels 0 1

am

a factor with levels 0 1

gear

a factor with levels 3 4 5

carb

a numeric vector

Examples

1
2
3
4
5
6
data(x)
x <- mtcars
x$vs = as.factor(x$vs)
x$am = as.factor(x$am)
x$gear = as.factor(x$gear)
## maybe str(x) ; plot(x) ...

FaridaBenchalal/MIXCLUSTERING documentation built on Dec. 17, 2021, 8:23 p.m.