Advertisement
AlexErin1308

Task №3

Mar 6th, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | Source Code | 0 0
  1. import pandas as pd
  2.  
  3. metrica = pd.read_csv('/datasets/metrica_data.csv')
  4. #print(metrica.info)
  5. time_avg = metrica['time'].mean()#вычислим среднее время просмотра сайта
  6. print(time_avg)#запишите среднее время просмотра
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement