06.exercise-renaming-and-combining【练习:重命名及组合】
This notebook is an exercise in the Pandas course. You can reference the tutorial at this link. Introduction 介绍 Run the following cell to load your data and some utility functions. 运行以下单元格来加载数据和一些实用函数。 import pandas as pd reviews = pd.read_csv("../input/wine-reviews/winemag-data-130k-v2.csv", index_col=0) from learntools.core import binder; binder.bind(globals()) from learntools.pandas.renaming_and_combining import * print("Setup complete.") Setup complete. Exercises 练习 […]