Forest Fire Area
Prediction of the burnt area by forest fires
@kaggle.sumitm004_forest_fire_area
Prediction of the burnt area by forest fires
@kaggle.sumitm004_forest_fire_area
The dataset contains 517 fires from the Montesinho Natural Park in Portugal. For each incident weekday, month, coordinates, and the burnt area are recorded, as well as several meteorological data such as rain, temperature, humidity, and wind. The workflow reads the data and trains a regression model based on the spatial, temporal, and weather variables.
CREATE TABLE forestfires (
"x" BIGINT,
"y" BIGINT,
"month" VARCHAR,
"day" VARCHAR,
"ffmc" DOUBLE,
"dmc" DOUBLE,
"dc" DOUBLE,
"isi" DOUBLE,
"temp" DOUBLE,
"rh" BIGINT,
"wind" DOUBLE,
"rain" DOUBLE,
"area" DOUBLE
);Anyone who has the link will be able to view this.