実行したいこと
以下のようなdateframeから複数の列を足してその結果を新たな列に追加しようとしています。
そのために以下のようなコードを使っているのですが、実行したあとに警告(ログ?)のようなものが出ます。
書いてあるURlを見てみたのですがよくわかりません。
このままでよいのか、それともコードを変えた方がよいのか教えて下さい。
コード
python
1df['output'] = df['student_grade']+'年'+df['student_class']+'組'+df['student_number']+'番'
警告
SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
開発環境
python3.9