Last active
April 1, 2017 06:15
-
-
Save ksomemo/20e41f8cd4dad077a2b33c1d914f952d to your computer and use it in GitHub Desktop.
pandas.DataFrame.columnsにsuffixをつける ref: http://qiita.com/ksomemo/items/4d3346a7edc05f3bf9d2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import seaborn as sns | |
sns.load_dataset("iris").add_prefix("prefix_").groupby("prefix_species").mean().add_suffix("_mean") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
動機
用途
参考