#升降

pd.dataframe和series以及np.narray的维度升降

 1.第一步读入泰坦尼克号数据集importpandasaspddata=pd.read_csv(r".Narrativedata.csv",index_col=0)#index_col=0将第0列作为索引,不写则认为第0列为特征data.head()  2.通过df的loc的函数从df中...