MaxPrestige commited on
Commit
289922d
·
verified ·
1 Parent(s): dea6e39

update README.md to reflect new dataset

Browse files
Files changed (1) hide show
  1. README.md +15 -3
README.md CHANGED
@@ -10,9 +10,13 @@ tags:
10
  ---
11
  📦 Dataset Card: CA_Weather_Fire_Dataset_Cleaned
12
  # Dataset Summary
13
- This dataset contains cleaned and preprocessed weather and fire incident data for California (1984–2025). It includes features such as temperature, humidity, wind speed, fire occurrence, and seasonal indicators. The dataset is intended for use in machine learning tasks related to wildfire prediction and environmental analysis. I changed the data types to floats, removing the full 'DATE' from the data, and rearranged the columns.
 
 
 
14
 
15
- ## Features
 
16
  - DAY_OF_YEAR (float): The numeric day within the year (1–365/366).
17
  - MONTH (float): The calendar month of the observation (1–12).
18
  - YEAR (float): The year of the observation.
@@ -26,7 +30,15 @@ tags:
26
  - TEMP_RANGE (float): The difference between maximum and minimum temperatures, indicating daily temperature variability.
27
  - FIRE_START_DAY (float): Indicator of fire occurrence (1.0 for fire, 0.0 for no fire)
28
  - MAX_TEMP (float): Maximum daily temperature in degrees Fahrenheit.
29
-
 
 
 
 
 
 
 
 
30
  ## Source and License
31
  This dataset is derived from publicly available data licensed under the Creative Commons Attribution 4.0 International License (CC BY 4.0).
32
 
 
10
  ---
11
  📦 Dataset Card: CA_Weather_Fire_Dataset_Cleaned
12
  # Dataset Summary
13
+ This dataset contains cleaned and preprocessed weather and fire incident data for California (1984–2025).
14
+ The original dataset, [California Weather and Fire Prediction Dataset (1984–2025) with Engineered Features](https://zenodo.org/records/14712845), includes features such as temperature, humidity, wind speed, fire occurrence, and seasonal indicators.
15
+ From the Original Dataset, I changed the data types to floats, rearranged the columns, removed multiple columns, and eliminated entries that had NaNs.
16
+ This dataset focuses on predicting the 'MAX_TEMP' column given 5 features.
17
 
18
+ ## Original Features
19
+ - DATE (string): The date of the observation.
20
  - DAY_OF_YEAR (float): The numeric day within the year (1–365/366).
21
  - MONTH (float): The calendar month of the observation (1–12).
22
  - YEAR (float): The year of the observation.
 
30
  - TEMP_RANGE (float): The difference between maximum and minimum temperatures, indicating daily temperature variability.
31
  - FIRE_START_DAY (float): Indicator of fire occurrence (1.0 for fire, 0.0 for no fire)
32
  - MAX_TEMP (float): Maximum daily temperature in degrees Fahrenheit.
33
+
34
+ ## Cleaned Features
35
+ - DAY_OF_YEAR (float): The numeric day within the year (1–365/366).
36
+ - PRECIPITATION (float): Daily precipitation in inches.
37
+ - LAGGED_PRECIPITATION (float): Cumulative precipitation over the preceding 7 days, reflecting recent moisture conditions.
38
+ - AVG_WIND_SPEED (float): Average daily wind speed in mph.
39
+ - MIN_TEMP (float): Minimum daily temperature in degrees Fahrenheit.
40
+ - MAX_TEMP (float): Maximum daily temperature in degrees Fahrenheit.
41
+
42
  ## Source and License
43
  This dataset is derived from publicly available data licensed under the Creative Commons Attribution 4.0 International License (CC BY 4.0).
44