2
I am studying the sklearn module of Python, and I came across this statement:
data = pd.read_csv('car.data')
X = data[[
'buying',
'maint',
'safety'
]].values
What exactly is stored in X? Because the declaration is made with two []?