i like to import a dataset with pandas, this is my code:
data = pd.read_csv(source + 'clustering_CB\\AAA_tableau_jan_oct_19_cardiologia.txt' ,sep='\t' , engine='python')
Column Col10 contains string values which let me know the duration of a web visit, here's an example
00:02:35
2 minute and 35 seconds. What i like to do is to import this columns as a time format in order to measure (in seconds or in minutes) the duration of the web visit.
pd.to_timedelta.