Add initial code with Streamlit, Plotly, and NumPy integration
Browse filesThe added code includes the necessary imports for Streamlit, Plotly, and NumPy. Streamlit is a popular framework for building interactive web applications with Python, while Plotly provides powerful tools for creating interactive plots and visualizations. NumPy, a fundamental library for numerical computing in Python, is used for array operations and mathematical computations within the application.
- requirements.txt +3 -0
requirements.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
streamlit
|
2 |
+
plotly
|
3 |
+
numpy
|