前提・実現したいこと
pandasをstrreamlitのコードに組み込みたいのですが、うまくいきません。
ポートフォリオを作成しようとしていて、何をやろうとしても大体Attribute Errorと出てきます。(メール自動送信やLINEチャットボットなど)
pandasとか以前に僕のパソコンに問題があるように思えてきました。(ディレクトリの内部がめちゃくちゃとか?)
解決方法を教えてくださると助かります。
発生している問題・エラーメッセージ
AttributeError: module 'pandas' has no attribute 'DateFrame'
Traceback:
File "c:\users\owner\appdata\local\programs\python\python39\lib\site-packages\streamlit\script_runner.py", line 333, in run_script
exec(code, module.dict)
File "C:\test\main0322.py", line 9, in <module>
df = pd.DateFrame({
File "c:\users\owner\appdata\local\programs\python\python39\lib\site-packages\pandas_init.py", line 244, in getattr
raise AttributeError(f"module 'pandas' has no attribute '{name}'")
エラーメッセージ
該当のソースコード
Python
1import streamlit as st 2import numpy as np 3import pandas as pd 4 5st.title('Streamlit 入門') 6 7st.write('DateFrame') 8 9df = pd.DateFrame({ 10 '1列目':[1,2,3,4], 11 '2列目':[10,20,30,40] 12}) 13 14st.write(df)
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/22 11:49
2021/03/30 05:02