Pandas 컬럼 밀기

1 개요[ | ]

Pandas 컬럼 밀기
Pandas 컬럼 내리기
import pandas as pd
import numpy as np

df = pd.DataFrame({
  'name': ['Alice','Bob','Carol','Dave','Erwin'],
  'num': [100,200,300,400,500],
})
df
df['shifted'] = df['num'].shift(1)
df
# 정수형 (NaN은 0으로 처리) 
temp = df['num'].shift(1)
df['shifted2'] = np.where(temp.isna(), 0, temp).astype('int')
df

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}