0
私はいくつかの文字列と浮動小数点としてのデータを持っているパンダDFを持っています。 int
に変換できるすべてのデータをそのままint
として残しておきます。pandasのすべてのint convertibleデータをintに変換するには?
# something like
df = df.applymap(lambda x: int(x) if type(int(x)) is int else x)
# this code is wrong and is something like x/y problem. But, is there a easy way workout this problem.
おかげで、
あなたは 'object' DTYPEを使用しない限りあなたは、パンダの列にhetergenousタイプを持つことはできません。それは良いことではありません。 –