Created
February 8, 2020 17:38
-
-
Save CharlyWargnier/4d33b7f6c80d1727cbac19445dee31e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dfFiltered = df[(df['Date'] > start_date) & (df['Date'] <= end_date) & (df['httpCodeClass'].isin(myNewList))] | |
csvName = "csvExport2" #@param {type:"string"} | |
csvName = csvName + '.csv' | |
dfFiltered.to_csv(csvName) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment