前提・実現したいこと
PWM_VitroDB+PSP_b=√Nという名前のディレクトリに約400個のテキストファイルがあります。
それらすべてをデータフレームとして読み込むところまではできています。
これらのデータフレームそれぞれに、何らかの形で名前を付けたいです。
色々調べましたが、うまくいきません。初心者ですがよろしくお願いします。
該当のソースコード
from glob import glob import pandas as pd files=glob("PWM_VitroDB+PSP_b=√N/*.txt") for file in files: a=files.index(file) df[a]=pd.read_table(file,header=None)
コメント
また、このような場合、一般的にはどのように400個のデータフレームを取り扱うのかも併せて教えていただけると幸いです。
最終的にはファイル名からそれぞれのデータフレームにアクセスすることが目的です。
データフレーム名にファイル名を使用するのがベストでしょうか。
それともディクショナリ?などを使って番号とファイル名を1:1対応させ、番号でアクセスするのが普通でしょうか。
説明が分かりにくかったらすみません。
よろしくお願いします。
Error
(長くてすみません…)
KeyError Traceback (most recent call last) ~\Anaconda3\lib\site-packages\pandas\core\indexes\base.py in get_loc(self, key, method, tolerance) 2896 try: -> 2897 return self._engine.get_loc(key) 2898 except KeyError: pandas\_libs\index.pyx in pandas._libs.index.IndexEngine.get_loc() pandas\_libs\index.pyx in pandas._libs.index.IndexEngine.get_loc() pandas\_libs\hashtable_class_helper.pxi in pandas._libs.hashtable.Int64HashTable.get_item() pandas\_libs\hashtable_class_helper.pxi in pandas._libs.hashtable.Int64HashTable.get_item() KeyError: 14 During handling of the above exception, another exception occurred: KeyError Traceback (most recent call last) ~\Anaconda3\lib\site-packages\pandas\core\internals\managers.py in set(self, item, value) 1068 try: -> 1069 loc = self.items.get_loc(item) 1070 except KeyError: ~\Anaconda3\lib\site-packages\pandas\core\indexes\base.py in get_loc(self, key, method, tolerance) 2898 except KeyError: -> 2899 return self._engine.get_loc(self._maybe_cast_indexer(key)) 2900 indexer = self.get_indexer([key], method=method, tolerance=tolerance) pandas\_libs\index.pyx in pandas._libs.index.IndexEngine.get_loc() pandas\_libs\index.pyx in pandas._libs.index.IndexEngine.get_loc() pandas\_libs\hashtable_class_helper.pxi in pandas._libs.hashtable.Int64HashTable.get_item() pandas\_libs\hashtable_class_helper.pxi in pandas._libs.hashtable.Int64HashTable.get_item() KeyError: 14 During handling of the above exception, another exception occurred: ValueError Traceback (most recent call last) <ipython-input-73-82b18bb0ee6f> in <module> 6 for file in files: 7 a=files.index(file) ----> 8 df[a]=pd.read_table(file,header=None) ~\Anaconda3\lib\site-packages\pandas\core\frame.py in __setitem__(self, key, value) 3470 else: 3471 # set column -> 3472 self._set_item(key, value) 3473 3474 def _setitem_slice(self, key, value): ~\Anaconda3\lib\site-packages\pandas\core\frame.py in _set_item(self, key, value) 3548 self._ensure_valid_index(value) 3549 value = self._sanitize_column(key, value) -> 3550 NDFrame._set_item(self, key, value) 3551 3552 # check if we are modifying a copy ~\Anaconda3\lib\site-packages\pandas\core\generic.py in _set_item(self, key, value) 3379 3380 def _set_item(self, key, value): -> 3381 self._data.set(key, value) 3382 self._clear_item_cache() 3383 ~\Anaconda3\lib\site-packages\pandas\core\internals\managers.py in set(self, item, value) 1070 except KeyError: 1071 # This item wasn't present, just insert at end -> 1072 self.insert(len(self.items), item, value) 1073 return 1074 ~\Anaconda3\lib\site-packages\pandas\core\internals\managers.py in insert(self, loc, item, value, allow_duplicates) 1179 new_axis = self.items.insert(loc, item) 1180 -> 1181 block = make_block(values=value, ndim=self.ndim, placement=slice(loc, loc + 1)) 1182 1183 for blkno, count in _fast_count_smallints(self._blknos[loc:]): ~\Anaconda3\lib\site-packages\pandas\core\internals\blocks.py in make_block(values, placement, klass, ndim, dtype, fastpath) 3265 values = DatetimeArray._simple_new(values, dtype=dtype) 3266 -> 3267 return klass(values, ndim=ndim, placement=placement) 3268 3269 ~\Anaconda3\lib\site-packages\pandas\core\internals\blocks.py in __init__(self, values, placement, ndim) 2773 values = np.array(values, dtype=object) 2774 -> 2775 super().__init__(values, ndim=ndim, placement=placement) 2776 2777 @property ~\Anaconda3\lib\site-packages\pandas\core\internals\blocks.py in __init__(self, values, placement, ndim) 126 raise ValueError( 127 "Wrong number of items passed {val}, placement implies " --> 128 "{mgr}".format(val=len(self.values), mgr=len(self.mgr_locs)) 129 ) 130 ValueError: Wrong number of items passed 14, placement implies 1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/25 04:21
2020/06/25 04:33
2020/06/25 05:31
2020/06/25 05:47
2020/06/25 05:58
2020/06/25 06:27
2020/06/25 06:45 編集
2020/06/25 06:53
2020/06/25 07:27
2020/06/26 00:38