Posts by ricardojosemdc • 29 points
1 post
-
2
votes1
answer62
viewsQ: What exactly does this Python statement do?
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…