前提・実現したいこと
pythonで日付と時刻それぞれ別の列にあるものを一つ列にdatatime型として変形したい
そのためまず、timeの桁数を揃えようと以下のコードを実行した
target_data['time'].zfill(4)
発生している問題・エラーメッセージ
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-39-d9bcb969db35> in <module> ----> 1 target_data['time'].zfill(4) ~/opt/anaconda3/envs/deeplearning/lib/python3.6/site-packages/pandas/core/generic.py in __getattr__(self, name) 5128 if self._info_axis._can_hold_identifiers_and_holds_name(name): 5129 return self[name] -> 5130 return object.__getattribute__(self, name) 5131 5132 def __setattr__(self, name: str, value) -> None: AttributeError: 'Series' object has no attribute 'zfill'
シリーズ型に対して上手く桁数を揃える方法はないでしょうか。
またその後、一つの列でdatatime型として保存するところまでコードを教えていただけると幸いです。
回答2件
あなたの回答
tips
プレビュー