I am playing some data from here in CSV.
I want to delete the "Timestamps are UTC timezone" and the "https://www.CryptoDataDownload.com" in the file. I've been trying to delete these items in pandas through drop() and adjust axis, label and some other parameters but no use. Since that row with those items has no label, so I can't really go through the label. I found some other posts to that need to create a list to process (e.g. this post), or go through import csv (e.g. this post). But I just wonder if it's possible to do it through pandas? Since this will be a repeat process with many CSVs, it would be spending resource to go through csv package (I guess?).
What I really want to do is to delete the column "Unix Timestamp" and change the "Date" to "datetime_UTC" so that I can convert the datetime format in "Date" (it seems I can't use the name "Date" to convert the datetime format in pandas as far as I have done so far). But the "Timestamps are UTC timezone" and the "https://www.CryptoDataDownload.com" have been blocking to process the column deletion in pandas.
Many thanks!