“Astype Python” Kod odpowiedzi

Konwertuj kolumnę pandas na int

# convert Series
my_series = pd.to_numeric(my_series)

# convert column "a" of a DataFrame
df["a"] = pd.to_numeric(df["a"])
Courageous Cobra

Ustaw typ pand kolumnowych

df.astype(int)
Real Rook

Ustaw pandy z danych kolumnowych

df = pd.read_csv("weather.tsv", sep="\t",  
                 dtype={'Day': str,'Wind':int64})
df.dtypes
Unsightly Unicorn

Astype Python

>>> ser = pd.Series([1, 2], dtype='int32')
ser
0    1
1    2
dtype: int32

>>> ser.astype('int64')
0    1
1    2
dtype: int64
Benja

Odpowiedzi podobne do “Astype Python”

Pytania podobne do “Astype Python”

Więcej pokrewnych odpowiedzi na “Astype Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu