Python Forum
Extract data between two dates from a .csv file using Python 2.7
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Extract data between two dates from a .csv file using Python 2.7
#1
I have an Excel file with the headings: Date, AQI and Raw Conc. The date is in yyyy-mm-dd format. I want to extract the data between two dates and copy it to another Excel file via Python.

What I have tried:

import pandas as pd
from pandas import DataFrame
 
import datetime
import pandas.io.data
 
df = pd.read_csv(r"C:\Users\Win-8.1\Desktop\delhi\dated.csv", index_col = 'Date', parse_dates = True)
 
mask = (df['Date'] >= '09-01-2015') & (df['Date'] <= '11-30-2016')
 
mask.to_csv(r"C:\Users\Win-8.1\Desktop\delhi\extracted.csv")
Reply


Messages In This Thread
Extract data between two dates from a .csv file using Python 2.7 - by sujai_banerji - Nov-15-2017, 07:16 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Add data to CSV file via Python Anaconda23 0 721 Dec-30-2022, 02:31 AM
Last Post: Anaconda23
  Training a model to identify specific SMS types and extract relevant data? lord_of_cinder 0 975 Oct-10-2022, 04:35 AM
Last Post: lord_of_cinder
  extract and plot data from a txt file usercat123 2 1,230 Apr-20-2022, 06:50 PM
Last Post: usercat123
  how to handling time series data file with Python? aupres 4 2,982 Aug-10-2020, 12:40 PM
Last Post: MattKahn13
  How to extract data from paragraph using Machine Learning with python? bccsthilina 2 3,036 Jul-27-2020, 07:02 AM
Last Post: hussainmujtaba
  Select column between to dates CSV data PythonJD 0 1,783 Apr-14-2020, 12:22 PM
Last Post: PythonJD
  python pandas: diff between 2 dates in a groupby bluedragon 0 3,280 Mar-25-2020, 04:18 PM
Last Post: bluedragon
  how to extract financial data from photocopy of document angela1 6 3,679 Feb-15-2020, 05:50 PM
Last Post: jim2007
  Python numpy fft from data file magnet1 1 2,753 Feb-06-2020, 07:30 AM
Last Post: magnet1
  How to extract data between two strings SriMekala 2 2,389 Aug-08-2019, 01:54 PM
Last Post: SriMekala

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020