Continuing my #LearnByDoing initiative for 2024 … here is a time series analysis app I built https://time-series-analysis.streamlit.app . Check it out :). Helpful comments are welcome.
I’m getting the following error:
IndexError: This app has encountered an error. The original error message is redacted to prevent data leaks. Full error details have been recorded in the logs (if you’re on Streamlit Cloud, click on ‘Manage app’ in the lower right of your app).
Traceback:
File "/home/adminuser/venv/lib/python3.9/site-packages/streamlit/runtime/scriptrunner/script_runner.py", line 535, in _run_script
exec(code, module.__dict__)File "/mount/src/timeseries_analysis/app.py", line 47, in <module>
minDate,maxDate = str(dates[0]), str(dates[1])
Hello, Thank you for notifying the error. It was because of the format in which the input was expecting the dates. I have corrected it by using separate input boxes for minimum and maximum dates.
Please check if this works well now. Also feel free to suggest more improvements :).
best
please share the source code (git page)
Hi … you can find the code related to the app when you visit the github repo… the link is on the app’s page
best
Chakresh