tobiasmj97 commited on
Commit
ca6a71b
1 Parent(s): 0be3e77
.DS_Store ADDED
Binary file (6.15 kB). View file
 
01_🌦_Price_Prediction.py CHANGED
@@ -142,7 +142,7 @@ with st.sidebar:
142
  # Title for the streamlit app
143
  st.title('Electricity Price Prediction 🌦')
144
 
145
- # Subtitle
146
  st.markdown("""
147
  Welcome to the electricity price predicter for DK1.
148
  \n The forecasted electricity prices are based on weather conditions, previous prices, and Danish holidays.
 
142
  # Title for the streamlit app
143
  st.title('Electricity Price Prediction 🌦')
144
 
145
+ # Description of the Explore page
146
  st.markdown("""
147
  Welcome to the electricity price predicter for DK1.
148
  \n The forecasted electricity prices are based on weather conditions, previous prices, and Danish holidays.
pages/02_🌎_Explore.py CHANGED
@@ -208,19 +208,21 @@ st.set_page_config(
208
  # Title for the streamlit app
209
  st.title('🌎 Explore')
210
 
211
- # Subtitle
212
  st.markdown(
213
  """
214
- Welcome to the Explore page for our Electricity Price Prediction project. This page is designed to help you delve into the data and gain valuable insights of the dataset. Here's what you can explore:
215
 
216
- - **Data Overview**: Get a summary of the dataset, including the number of records, range of dates, and key statistics on electricity prices.
217
- - **Visualizations**: Interactive charts and graphs such as time series plots, histograms, and box plots to analyze trends, seasonal patterns, and price distributions.
218
- - **Feature Analysis**: Examine correlations between electricity prices and various features like weather conditions, demand, and production sources.
219
 
220
  Explore these features to uncover patterns and insights that will aid in accurately predicting electricity prices.
221
- """
222
  )
223
 
 
 
224
  # PART 3.1: Sidebar settings
225
  with st.sidebar:
226
 
@@ -248,7 +250,7 @@ with st.sidebar:
248
  st.write(3 * "-")
249
  st.markdown(
250
  """
251
- ### Data Overview:
252
  In this section, you'll find a concise summary of the dataset, including the total number of records, the range of dates covered, and essential statistics regarding electricity prices. Understanding the basic characteristics of the data is crucial for interpreting the visualizations and performing further analysis.
253
  Here we also provide a quick summaries of key statistical measures such as mean, median, and standard deviation for electricity prices. These summaries provide essential context and help identify outliers or unusual patterns in the data.
254
  """
@@ -267,7 +269,7 @@ st.write(price_stats.T)
267
  st.write(3 * "-")
268
  st.markdown(
269
  """
270
- ### Visualizations:
271
  Dive deeper into the data with a variety of interactive charts and graphs. From time series plots revealing trends over time to histograms and box plots showcasing price distributions, these visualizations provide invaluable insights into the patterns and fluctuations of electricity prices.
272
  """
273
  )
@@ -422,9 +424,10 @@ elif visualization_option == "Histogram of electricity prices":
422
  # st.pyplot(plt)
423
 
424
  st.write(3 * "-")
 
425
  st.markdown(
426
  """
427
- ### Feature Analysis:
428
  Investigate the relationship between electricity prices and various influencing factors such as weather conditions, demand fluctuations, and production sources. By exploring correlations and dependencies, you'll gain a deeper understanding of the dynamics driving price movements.
429
  """
430
  )
 
208
  # Title for the streamlit app
209
  st.title('🌎 Explore')
210
 
211
+ # Description of the Explore page
212
  st.markdown(
213
  """
214
+ Welcome to the Explore page for our Electricity Price Prediction project. This page is designed to help you delve into the data and gain valuable insights from the dataset. Here's what you can explore:
215
 
216
+ - <a href="#data-overview" style="text-decoration: underline; color: inherit;">**Data Overview**</a>: Get a summary of the dataset, including the number of records, range of dates, and key statistics on electricity prices.
217
+ - <a href="#visualizations" style="text-decoration: underline; color: inherit;">**Visualizations**</a>: Interactive charts and graphs such as time series plots, histograms, and box plots to analyze trends, seasonal patterns, and price distributions.
218
+ - <a href="#feature-analysis" style="text-decoration: underline; color: inherit;">**Feature Analysis**</a>: Examine correlations between electricity prices and various features like weather conditions, demand, and production sources.
219
 
220
  Explore these features to uncover patterns and insights that will aid in accurately predicting electricity prices.
221
+ """, unsafe_allow_html=True
222
  )
223
 
224
+
225
+
226
  # PART 3.1: Sidebar settings
227
  with st.sidebar:
228
 
 
250
  st.write(3 * "-")
251
  st.markdown(
252
  """
253
+ ### Data Overview
254
  In this section, you'll find a concise summary of the dataset, including the total number of records, the range of dates covered, and essential statistics regarding electricity prices. Understanding the basic characteristics of the data is crucial for interpreting the visualizations and performing further analysis.
255
  Here we also provide a quick summaries of key statistical measures such as mean, median, and standard deviation for electricity prices. These summaries provide essential context and help identify outliers or unusual patterns in the data.
256
  """
 
269
  st.write(3 * "-")
270
  st.markdown(
271
  """
272
+ ### Visualizations
273
  Dive deeper into the data with a variety of interactive charts and graphs. From time series plots revealing trends over time to histograms and box plots showcasing price distributions, these visualizations provide invaluable insights into the patterns and fluctuations of electricity prices.
274
  """
275
  )
 
424
  # st.pyplot(plt)
425
 
426
  st.write(3 * "-")
427
+ # st.subheader("Feature Analysis")
428
  st.markdown(
429
  """
430
+ ### Feature Analysis
431
  Investigate the relationship between electricity prices and various influencing factors such as weather conditions, demand fluctuations, and production sources. By exploring correlations and dependencies, you'll gain a deeper understanding of the dynamics driving price movements.
432
  """
433
  )