スライスのコピー
参考HP:https://note.nkmk.me/python-pandas-setting-with-copy-warning/https://note.nkmk.me/python-pandas-setting-with-copy-warning/
エラー例:
different_cols = ['RELAFFIL', 'SATMTMID', 'CURROPER', 'INSTNM', 'STABBR']
col2 = college[different_cols] # ここでスライスのコピーとなっている
col2['RELAFFIL'] = col2['RELAFFIL'].astype('int8')