matlab中云滴代码2020
年
Kaggle
机器学习和数据科学调查
语境
这个存储库中的代码是我为了从
Kaggle
的
.
此外,为了查看原始的
Kaggle
Notebook,请遵循此
。
数据预处理
调查数据具有特定的结构,可以方便地清理和更改数据框的某些属性。
一些问题:
列名很冗长,它们不是描述性的。
列名已通过将“
Part
”和“_”替换为“.”,将“OTHER”替换为“0”来更改:
#
Formating
the
columns
for
comfortable
access
column_dict
=
{}
#
Getting
the
dictionary
needed
to
change
the
column
names
for
col
in
res
.
columns
:
n_col
=
col
.
replace
(
'_Part_'
,
'.'
)
n_col
=
n_col
.
replace
(
'_'
,
'.'
)
n_col
=
n_col
.
replace
(
'OTHER'
,
'0'
)
column_dict
[
col
]
=
n_c
2022-05-12 15:07:29
12.42MB
系统开源
1