Question: Write a python program that reads the data filehttps://archive.ics.uci.edu/ml/machine-learning-databases/eventdetection/CalIt2.dataand finds the total count of outflow and the total count of inflow.The attributes in the file
Write a python program that reads the data filehttps://archive.ics.uci.edu/ml/machine-learning-databases/eventdetection/CalIt2.dataand finds the total count of outflow and the total count of inflow.The attributes in the file are as follows: 1. Flow ID: 7 is outflow, 9 is in flow 2. Date: MM/DD/YY 3. Time: HH:MM:SS 4. Count:Number of counts reported for the previous half hour Rows: Eachhalf hour time slice is represented by 2 rows: one row for the outflow during that time period (ID=7) and one row for the in flowduring that time period (ID=9) Hint: # Importing the datasetdataset = pd.read_csv('CalIt2.data')https://archive.ics.uci.edu/ml/machine-learning-databases/event-detection/CalIt2.datathis link should work PLEASE DO IN PYTHON using Importing thedataset dataset = pd.read_csv('CalIt2.data')
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
