Prediction Model
Prediction Model
NAME : DHANASREE M
COLLEGE : R.V.S COLLEGE OF ENGINEERING
Phase 5: Project Documentation & Submission
CONTEXT
The National Earthquake Information Center (NEIC)
determines the location and size of all significant earthquakes that
occur worldwide and disseminates this information immediately to
national and international agencies, scientists, critical facilities,
and the general public. The NEIC compiles and provides to
scientists and to the public an extensive seismic database that
serves as a foundation for scientific research through the
operation of modern digital national and global seismograph
networks and cooperative international agreements. The NEIC is
the national data center and archive for earthquake information.
CONTENT
This dataset includes a record of the date, time,
location, depth, magnitude, and source of every earthquake with a
reported magnitude 5.5 or higher since 1965.
DATA SOURCE
Dataset link -
https://www.kaggle.com/datasets/usgs/earthquake-database
FEATURE ENGINEERING
Now, let’s divide the date column into the day, month, and
year columns respectively.
CODE
splitted = df['Date'].str.split('-', expand=True)
df['day'] = splitted[2].astype('int')
df['month'] = splitted[1].astype('int')
df['year'] = splitted[0].astype('int')
df.drop('Date', axis=1,inplace=True)
df.head()
OUTPUT
OUTPUT
OUTPUT
OUTPUT
OUTPUT
OUTPUT
OUTPUT
OUTPUT
BENEFITS
CONCLUSION
"Predicting tremors, saving lives:
Python's seismic wisdom."
In conclusion, the earthquake prediction model developed
using Python represents a significant step towards
improving our ability to forecast seismic events. While no
model can predict earthquakes with absolute certainty, this
model demonstrates the potential of machine learning and
data analysis techniques in identifying seismic patterns
and providing early warning signals. Further research and
data refinement are essential to enhance the model's
accuracy and real-world applicability. Nonetheless, this
project lays a foundation for ongoing efforts to mitigate the
impact of earthquakes on vulnerable regions and
populations.
PRESENTED BY,
DHANASREE M