You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
규칙. 생긴대로
예를 들어 20210123 일때, pd.to_datetime(df['date'],format='%Y%m%d')
예를 들어 210123 일때, pd.to_datetime(df['date'],format='%y%m%d')
예를 들어 01/23/2021 일때, pd.to_datetime('01/23/2021',format='%m/%d/%Y')
object -> numeric
df[col].astype(int) or float
이런방법도 있는데 이상한 문자열이 포함된 특수한 경우 pd.to_numeric(df[col], errors='coerce') 로 바꾼 후, fillna(-999) 로 이상치로 넣어버리는경우도 있다.
The text was updated successfully, but these errors were encountered:
numeric -> object
df[col].astype(str)
numeric -> date
규칙. 생긴대로
예를 들어 20210123 일때, pd.to_datetime(df['date'],format='%Y%m%d')
예를 들어 210123 일때, pd.to_datetime(df['date'],format='%y%m%d')
예를 들어 01/23/2021 일때, pd.to_datetime('01/23/2021',format='%m/%d/%Y')
object -> numeric
df[col].astype(int) or float
이런방법도 있는데 이상한 문자열이 포함된 특수한 경우 pd.to_numeric(df[col], errors='coerce') 로 바꾼 후, fillna(-999) 로 이상치로 넣어버리는경우도 있다.
The text was updated successfully, but these errors were encountered: