-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
68 lines (42 loc) · 1.92 KB
/
main.py
File metadata and controls
68 lines (42 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import pandas as pd
import numpy as np
import plotly.express as px
import plotly.graph_objects as go
print("----------------------------------------------------------------")
data = pd.read_csv("Screentime-App-Details.csv")
print(data.head())
print("----------------------------------------------------------------")
data.isnull().sum() # check for missing values in the dataset
print(data.isnull().sum())
print("----------------------------------------------------------------")
print(data.describe())
# Usage of Apps by User (Bar Chart)
AppUsagefigure = px.bar(data_frame=data,
x = "Date",
y = "Usage",
color="App",
title="Usage")
AppUsagefigure.show()
# Notifications of Apps to the User (Bar Chart)
NotificationsFigure = px.bar(data_frame=data,
x = "Date",
y = "Notifications",
color="App",
title="Notifications")
NotificationsFigure.show()
# Number of times Apps opened by the User (Bar Chart)
TimesOpenedFigure = px.bar(data_frame=data,
x = "Date",
y = "Times opened",
color="App",
title="Times Opened")
TimesOpenedFigure.show()
# Relationship between the number of notifications and the amount of usage(in the form of scatter plot)
figure = px.scatter(data_frame = data,
x="Notifications",
y="Usage",
size="Notifications",
trendline="ols",
title = "Relationship Between Number of Notifications and Usage")
figure.show()
print("Summary: This is how we analyze a user's screen time using Python, focusing on which applications and websites they use and for how long. There’s a linear relationship between the number of notifications and the amount of usage. It means that more notifications result in more use of smartphones.")