library(dplyr)
## Warning: package 'dplyr' was built under R version 4.5.3
##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
library(ggplot2)
## Warning: package 'ggplot2' was built under R version 4.5.3
library(caret)
## Warning: package 'caret' was built under R version 4.5.3
## Loading required package: lattice
data <- read.csv("C:/Users/mohit/OneDrive/Desktop/student_performance_grade.csv.xls")
head(data)
## Student_ID Age Gender Hours_Studied Attendance Sleep_Hours Stress_Level
## 1 STU00001 17 Female 8.20 80.0 7.3 2.3
## 2 STU00002 22 Male 4.07 69.2 7.9 3.6
## 3 STU00003 23 Female 5.07 74.2 6.7 2.6
## 4 STU00004 22 Female 5.82 82.5 3.7 3.3
## 5 STU00005 21 Male 3.42 90.8 7.4 7.0
## 6 STU00006 22 Female 5.00 82.7 6.5 9.1
## Screen_Time Previous_GPA Part_Time_Job Study_Method Diet_Quality
## 1 3.2 3.07 No Online Average
## 2 0.5 2.66 Yes Offline Average
## 3 4.7 3.27 No Hybrid Average
## 4 2.3 2.87 No Offline Average
## 5 3.1 2.82 Yes Offline Average
## 6 3.8 3.16 No Hybrid Good
## Internet_Quality Extracurricular Tutoring_Sessions_Per_Week
## 1 Average Yes 3
## 2 Good No 2
## 3 Good No 1
## 4 Excellent No 0
## 5 Good No 2
## 6 Average No 1
## Family_Income_Level Exam_Anxiety_Score Grade
## 1 High 1.8 A
## 2 Middle 1.0 A
## 3 Middle 4.2 A
## 4 Middle 3.6 A
## 5 Middle 4.5 B
## 6 High 1.4 A
str(data)
## 'data.frame': 8000 obs. of 18 variables:
## $ Student_ID : chr "STU00001" "STU00002" "STU00003" "STU00004" ...
## $ Age : int 17 22 23 22 21 22 17 19 21 19 ...
## $ Gender : chr "Female" "Male" "Female" "Female" ...
## $ Hours_Studied : num 8.2 4.07 5.07 5.82 3.42 5 5 1.49 7.04 6.2 ...
## $ Attendance : num 80 69.2 74.2 82.5 90.8 82.7 78.9 77.4 95.6 71.9 ...
## $ Sleep_Hours : num 7.3 7.9 6.7 3.7 7.4 6.5 5 6 6.7 6.4 ...
## $ Stress_Level : num 2.3 3.6 2.6 3.3 7 9.1 7.8 6.2 3 4.6 ...
## $ Screen_Time : num 3.2 0.5 4.7 2.3 3.1 3.8 3 4.7 2.7 5 ...
## $ Previous_GPA : num 3.07 2.66 3.27 2.87 2.82 3.16 2.92 2.08 3.28 2.05 ...
## $ Part_Time_Job : chr "No" "Yes" "No" "No" ...
## $ Study_Method : chr "Online" "Offline" "Hybrid" "Offline" ...
## $ Diet_Quality : chr "Average" "Average" "Average" "Average" ...
## $ Internet_Quality : chr "Average" "Good" "Good" "Excellent" ...
## $ Extracurricular : chr "Yes" "No" "No" "No" ...
## $ Tutoring_Sessions_Per_Week: int 3 2 1 0 2 1 1 0 2 0 ...
## $ Family_Income_Level : chr "High" "Middle" "Middle" "Middle" ...
## $ Exam_Anxiety_Score : num 1.8 1 4.2 3.6 4.5 1.4 4.2 7.1 4 4.3 ...
## $ Grade : chr "A" "A" "A" "A" ...
summary(data)
## Student_ID Age Gender Hours_Studied
## Length:8000 Min. :17.00 Length:8000 Min. : 0.020
## Class :character 1st Qu.:18.00 Class :character 1st Qu.: 3.680
## Mode :character Median :20.50 Mode :character Median : 4.980
## Mean :20.49 Mean : 4.984
## 3rd Qu.:22.00 3rd Qu.: 6.312
## Max. :24.00 Max. :12.000
## Attendance Sleep_Hours Stress_Level Screen_Time
## Min. : 43.30 Min. : 3.000 Min. : 1.000 Min. :0.500
## 1st Qu.: 73.40 1st Qu.: 6.200 1st Qu.: 3.700 1st Qu.:3.000
## Median : 80.10 Median : 7.000 Median : 5.000 Median :4.000
## Mean : 79.93 Mean : 6.989 Mean : 5.014 Mean :4.025
## 3rd Qu.: 86.60 3rd Qu.: 7.800 3rd Qu.: 6.300 3rd Qu.:5.000
## Max. :100.00 Max. :10.000 Max. :10.000 Max. :9.600
## Previous_GPA Part_Time_Job Study_Method Diet_Quality
## Min. :1.500 Length:8000 Length:8000 Length:8000
## 1st Qu.:2.670 Class :character Class :character Class :character
## Median :2.990 Mode :character Mode :character Mode :character
## Mean :2.992
## 3rd Qu.:3.330
## Max. :6.700
## Internet_Quality Extracurricular Tutoring_Sessions_Per_Week
## Length:8000 Length:8000 Min. :0.000
## Class :character Class :character 1st Qu.:1.000
## Mode :character Mode :character Median :2.000
## Mean :1.701
## 3rd Qu.:2.000
## Max. :5.000
## Family_Income_Level Exam_Anxiety_Score Grade
## Length:8000 Min. : 1.000 Length:8000
## Class :character 1st Qu.: 3.300 Class :character
## Mode :character Median : 4.400 Mode :character
## Mean : 4.494
## 3rd Qu.: 5.600
## Max. :10.000
mean(data$Hours_Studied)
## [1] 4.983845
median(data$Hours_Studied)
## [1] 4.98
mean(data$Sleep_Hours)
## [1] 6.989125
median(data$Sleep_Hours)
## [1] 7
mean(data$Stress_Level)
## [1] 5.014175
median(data$Stress_Level)
## [1] 5
mean(data$Attendance)
## [1] 79.93337
median(data$Attendance)
## [1] 80.1
mean(data$Previous_GPA)
## [1] 2.992408
median(data$Previous_GPA)
## [1] 2.99
ggplot(data, aes(x=Hours_Studied)) + geom_histogram(binwidth=1, fill="blue")

ggplot(data, aes(x=Sleep_Hours)) + geom_histogram(binwidth=1, fill="green")

ggplot(data, aes(x=Stress_Level)) + geom_histogram(binwidth=1, fill="red")

ggplot(data, aes(x=Attendance)) + geom_histogram(binwidth=5, fill="purple")

ggplot(data, aes(x=Previous_GPA)) + geom_histogram(binwidth=0.5, fill="orange")

cor(data[,c("Hours_Studied","Sleep_Hours","Stress_Level","Attendance","Previous_GPA")])
## Hours_Studied Sleep_Hours Stress_Level Attendance Previous_GPA
## Hours_Studied 1.00000000 0.019577451 -0.010873695 0.017251653 0.012320358
## Sleep_Hours 0.01957745 1.000000000 0.031962636 0.003725549 0.004397572
## Stress_Level -0.01087370 0.031962636 1.000000000 -0.007547477 -0.001236271
## Attendance 0.01725165 0.003725549 -0.007547477 1.000000000 0.010617783
## Previous_GPA 0.01232036 0.004397572 -0.001236271 0.010617783 1.000000000
ggplot(data, aes(x=Hours_Studied, y=Previous_GPA)) + geom_point()

ggplot(data, aes(x=Sleep_Hours, y=Previous_GPA)) + geom_point()

ggplot(data, aes(x=Stress_Level, y=Previous_GPA)) + geom_point()

ggplot(data, aes(x=Attendance, y=Previous_GPA)) + geom_point()

ggplot(data, aes(x=Screen_Time, y=Previous_GPA)) + geom_point()

ggplot(data, aes(x=Exam_Anxiety_Score, y=Previous_GPA)) + geom_point()

ggplot(data, aes(x=Hours_Studied, y=Previous_GPA)) + geom_point() + geom_smooth(method="lm")
## `geom_smooth()` using formula = 'y ~ x'

ggplot(data, aes(x=Sleep_Hours, y=Previous_GPA)) + geom_point() + geom_smooth(method="lm")
## `geom_smooth()` using formula = 'y ~ x'

ggplot(data, aes(x=Stress_Level, y=Previous_GPA)) + geom_point() + geom_smooth(method="lm")
## `geom_smooth()` using formula = 'y ~ x'

ggplot(data, aes(x=Attendance, y=Previous_GPA)) + geom_point() + geom_smooth(method="lm")
## `geom_smooth()` using formula = 'y ~ x'

ggplot(data, aes(x=Screen_Time, y=Previous_GPA)) + geom_point() + geom_smooth(method="lm")
## `geom_smooth()` using formula = 'y ~ x'

ggplot(data, aes(x=Exam_Anxiety_Score, y=Previous_GPA)) + geom_point() + geom_smooth(method="lm")
## `geom_smooth()` using formula = 'y ~ x'

ggplot(data, aes(x=Tutoring_Sessions_Per_Week, y=Previous_GPA)) + geom_point() + geom_smooth(method="lm")
## `geom_smooth()` using formula = 'y ~ x'

ggplot(data, aes(x=Hours_Studied, y=Stress_Level)) + geom_point() + geom_smooth(method="lm")
## `geom_smooth()` using formula = 'y ~ x'

data %>% group_by(Gender) %>% summarise(avg_hours = mean(Hours_Studied))
## # A tibble: 3 × 2
## Gender avg_hours
## <chr> <dbl>
## 1 Female 4.99
## 2 Male 4.98
## 3 Non-Binary 4.90
data %>% group_by(Gender) %>% summarise(avg_gpa = mean(Previous_GPA))
## # A tibble: 3 × 2
## Gender avg_gpa
## <chr> <dbl>
## 1 Female 2.99
## 2 Male 3.00
## 3 Non-Binary 3.00
data %>% group_by(Diet_Quality) %>% summarise(avg_gpa = mean(Previous_GPA))
## # A tibble: 3 × 2
## Diet_Quality avg_gpa
## <chr> <dbl>
## 1 Average 3.00
## 2 Good 2.98
## 3 Poor 3.00
data %>% group_by(Internet_Quality) %>% summarise(avg_gpa = mean(Previous_GPA))
## # A tibble: 4 × 2
## Internet_Quality avg_gpa
## <chr> <dbl>
## 1 Average 3.00
## 2 Excellent 2.99
## 3 Good 2.99
## 4 Poor 2.99
data %>% group_by(Study_Method) %>% summarise(avg_gpa = mean(Previous_GPA))
## # A tibble: 3 × 2
## Study_Method avg_gpa
## <chr> <dbl>
## 1 Hybrid 2.98
## 2 Offline 3.00
## 3 Online 2.99
data %>% group_by(Extracurricular) %>% summarise(avg_gpa = mean(Previous_GPA))
## # A tibble: 2 × 2
## Extracurricular avg_gpa
## <chr> <dbl>
## 1 No 2.99
## 2 Yes 2.99
data %>% group_by(Family_Income_Level) %>% summarise(avg_gpa = mean(Previous_GPA))
## # A tibble: 3 × 2
## Family_Income_Level avg_gpa
## <chr> <dbl>
## 1 High 3.00
## 2 Low 2.99
## 3 Middle 2.99
ggplot(data, aes(x=Tutoring_Sessions_Per_Week, y=Previous_GPA)) + geom_point()

ggplot(data, aes(x=Exam_Anxiety_Score)) + geom_histogram(binwidth=1)

ggplot(data, aes(x=Screen_Time)) + geom_histogram(binwidth=1)

simple_model <- lm(Previous_GPA ~ Hours_Studied, data=data)
summary(simple_model)
##
## Call:
## lm(formula = Previous_GPA ~ Hours_Studied, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -1.5042 -0.3267 0.0013 0.3392 3.7103
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 2.977006 0.015010 198.334 <2e-16 ***
## Hours_Studied 0.003090 0.002804 1.102 0.271
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.4895 on 7998 degrees of freedom
## Multiple R-squared: 0.0001518, Adjusted R-squared: 2.678e-05
## F-statistic: 1.214 on 1 and 7998 DF, p-value: 0.2705
ggplot(data, aes(x=Hours_Studied, y=Previous_GPA)) + geom_point() + geom_smooth(method="lm", color="blue")
## `geom_smooth()` using formula = 'y ~ x'

simple_model2 <- lm(Previous_GPA ~ Sleep_Hours, data=data)
summary(simple_model2)
##
## Call:
## lm(formula = Previous_GPA ~ Sleep_Hours, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -1.4978 -0.3241 0.0007 0.3383 3.7099
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 2.979795 0.032534 91.590 <2e-16 ***
## Sleep_Hours 0.001805 0.004589 0.393 0.694
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.4896 on 7998 degrees of freedom
## Multiple R-squared: 1.934e-05, Adjusted R-squared: -0.0001057
## F-statistic: 0.1547 on 1 and 7998 DF, p-value: 0.6941
ggplot(data, aes(x=Sleep_Hours, y=Previous_GPA)) + geom_point() + geom_smooth(method="lm", color="green")
## `geom_smooth()` using formula = 'y ~ x'

multi_model <- lm(Previous_GPA ~ Hours_Studied + Sleep_Hours + Stress_Level + Attendance, data=data)
summary(multi_model)
##
## Call:
## lm(formula = Previous_GPA ~ Hours_Studied + Sleep_Hours + Stress_Level +
## Attendance, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -1.5080 -0.3249 0.0021 0.3385 3.7139
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 2.9247995 0.0586917 49.833 <2e-16 ***
## Hours_Studied 0.0030217 0.0028059 1.077 0.282
## Sleep_Hours 0.0017072 0.0045922 0.372 0.710
## Stress_Level -0.0002927 0.0028232 -0.104 0.917
## Attendance 0.0005265 0.0005670 0.929 0.353
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.4896 on 7995 degrees of freedom
## Multiple R-squared: 0.0002784, Adjusted R-squared: -0.0002217
## F-statistic: 0.5567 on 4 and 7995 DF, p-value: 0.6942
data$Predicted_GPA <- predict(multi_model, data)
ggplot(data, aes(x=Previous_GPA, y=Predicted_GPA)) + geom_point() + geom_smooth(method="lm", color="red")
## `geom_smooth()` using formula = 'y ~ x'

ggplot(data, aes(x=Predicted_GPA, y=Previous_GPA - Predicted_GPA)) + geom_point()

data$Pass_Fail <- ifelse(data$Grade %in% c("A","B"), "Pass", "Fail")
data$Pass_Fail <- as.factor(data$Pass_Fail)
set.seed(123)
trainIndex <- createDataPartition(data$Pass_Fail, p=0.7, list=FALSE)
train <- data[trainIndex,]
test <- data[-trainIndex,]
model <- glm(Pass_Fail ~ Hours_Studied + Sleep_Hours + Stress_Level + Attendance,
data=train, family="binomial")
summary(model)
##
## Call:
## glm(formula = Pass_Fail ~ Hours_Studied + Sleep_Hours + Stress_Level +
## Attendance, family = "binomial", data = train)
##
## Coefficients:
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) -7.031517 0.519002 -13.55 <2e-16 ***
## Hours_Studied 1.007000 0.034834 28.91 <2e-16 ***
## Sleep_Hours 0.430759 0.039817 10.82 <2e-16 ***
## Stress_Level -0.501441 0.027086 -18.51 <2e-16 ***
## Attendance 0.055068 0.004964 11.09 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## (Dispersion parameter for binomial family taken to be 1)
##
## Null deviance: 5003.5 on 5600 degrees of freedom
## Residual deviance: 3055.5 on 5596 degrees of freedom
## AIC: 3065.5
##
## Number of Fisher Scoring iterations: 6
pred <- predict(model, test, type="response")
predicted_class <- ifelse(pred > 0.5, "Pass", "Fail")
confusionMatrix(as.factor(predicted_class), test$Pass_Fail)
## Confusion Matrix and Statistics
##
## Reference
## Prediction Fail Pass
## Fail 178 71
## Pass 215 1935
##
## Accuracy : 0.8808
## 95% CI : (0.8671, 0.8935)
## No Information Rate : 0.8362
## P-Value [Acc > NIR] : 4.895e-10
##
## Kappa : 0.4897
##
## Mcnemar's Test P-Value : < 2.2e-16
##
## Sensitivity : 0.4529
## Specificity : 0.9646
## Pos Pred Value : 0.7149
## Neg Pred Value : 0.9000
## Prevalence : 0.1638
## Detection Rate : 0.0742
## Detection Prevalence : 0.1038
## Balanced Accuracy : 0.7088
##
## 'Positive' Class : Fail
##
ggplot(data, aes(x=Hours_Studied, fill=Pass_Fail)) + geom_histogram(binwidth=1)

ggplot(data, aes(x=Sleep_Hours, fill=Pass_Fail)) + geom_histogram(binwidth=1)

ggplot(data, aes(x=Stress_Level, fill=Pass_Fail)) + geom_histogram(binwidth=1)

data %>% group_by(Pass_Fail) %>% summarise(avg_hours = mean(Hours_Studied))
## # A tibble: 2 × 2
## Pass_Fail avg_hours
## <fct> <dbl>
## 1 Fail 2.99
## 2 Pass 5.37
data %>% group_by(Pass_Fail) %>% summarise(avg_sleep = mean(Sleep_Hours))
## # A tibble: 2 × 2
## Pass_Fail avg_sleep
## <fct> <dbl>
## 1 Fail 6.66
## 2 Pass 7.05
data %>% group_by(Pass_Fail) %>% summarise(avg_stress = mean(Stress_Level))
## # A tibble: 2 × 2
## Pass_Fail avg_stress
## <fct> <dbl>
## 1 Fail 5.99
## 2 Pass 4.82
data %>% group_by(Pass_Fail) %>% summarise(avg_attendance = mean(Attendance))
## # A tibble: 2 × 2
## Pass_Fail avg_attendance
## <fct> <dbl>
## 1 Fail 77.1
## 2 Pass 80.5
ggplot(data, aes(x=Previous_GPA, fill=Pass_Fail)) + geom_histogram(binwidth=0.5)

ggplot(data, aes(x=Hours_Studied, y=Stress_Level)) + geom_point()

ggplot(data, aes(x=Sleep_Hours, y=Stress_Level)) + geom_point()

ggplot(data, aes(x=Hours_Studied, y=Attendance)) + geom_point()

data %>% group_by(Study_Method, Pass_Fail) %>% summarise(count=n())
## `summarise()` has regrouped the output.
## ℹ Summaries were computed grouped by Study_Method and Pass_Fail.
## ℹ Output is grouped by Study_Method.
## ℹ Use `summarise(.groups = "drop_last")` to silence this message.
## ℹ Use `summarise(.by = c(Study_Method, Pass_Fail))` for per-operation grouping
## (`?dplyr::dplyr_by`) instead.
## # A tibble: 6 × 3
## # Groups: Study_Method [3]
## Study_Method Pass_Fail count
## <chr> <fct> <int>
## 1 Hybrid Fail 354
## 2 Hybrid Pass 2016
## 3 Offline Fail 530
## 4 Offline Pass 2640
## 5 Online Fail 429
## 6 Online Pass 2031
data %>% group_by(Diet_Quality, Pass_Fail) %>% summarise(count=n())
## `summarise()` has regrouped the output.
## ℹ Summaries were computed grouped by Diet_Quality and Pass_Fail.
## ℹ Output is grouped by Diet_Quality.
## ℹ Use `summarise(.groups = "drop_last")` to silence this message.
## ℹ Use `summarise(.by = c(Diet_Quality, Pass_Fail))` for per-operation grouping
## (`?dplyr::dplyr_by`) instead.
## # A tibble: 6 × 3
## # Groups: Diet_Quality [3]
## Diet_Quality Pass_Fail count
## <chr> <fct> <int>
## 1 Average Fail 654
## 2 Average Pass 3326
## 3 Good Fail 239
## 4 Good Pass 1755
## 5 Poor Fail 420
## 6 Poor Pass 1606
data %>% group_by(Family_Income_Level, Pass_Fail) %>% summarise(count=n())
## `summarise()` has regrouped the output.
## ℹ Summaries were computed grouped by Family_Income_Level and Pass_Fail.
## ℹ Output is grouped by Family_Income_Level.
## ℹ Use `summarise(.groups = "drop_last")` to silence this message.
## ℹ Use `summarise(.by = c(Family_Income_Level, Pass_Fail))` for per-operation
## grouping (`?dplyr::dplyr_by`) instead.
## # A tibble: 6 × 3
## # Groups: Family_Income_Level [3]
## Family_Income_Level Pass_Fail count
## <chr> <fct> <int>
## 1 High Fail 343
## 2 High Pass 1697
## 3 Low Fail 332
## 4 Low Pass 1716
## 5 Middle Fail 638
## 6 Middle Pass 3274
data %>% group_by(Internet_Quality, Pass_Fail) %>% summarise(count=n())
## `summarise()` has regrouped the output.
## ℹ Summaries were computed grouped by Internet_Quality and Pass_Fail.
## ℹ Output is grouped by Internet_Quality.
## ℹ Use `summarise(.groups = "drop_last")` to silence this message.
## ℹ Use `summarise(.by = c(Internet_Quality, Pass_Fail))` for per-operation
## grouping (`?dplyr::dplyr_by`) instead.
## # A tibble: 8 × 3
## # Groups: Internet_Quality [4]
## Internet_Quality Pass_Fail count
## <chr> <fct> <int>
## 1 Average Fail 374
## 2 Average Pass 1911
## 3 Excellent Fail 256
## 4 Excellent Pass 1373
## 5 Good Fail 558
## 6 Good Pass 2708
## 7 Poor Fail 125
## 8 Poor Pass 695
data <- data %>%
mutate(Recommendation = ifelse(Hours_Studied < 3, "Increase Study Time",
ifelse(Sleep_Hours < 6, "Improve Sleep",
ifelse(Stress_Level > 6, "Reduce Stress",
ifelse(Screen_Time > 5, "Reduce Screen Time",
"Good Performance Habit")))))
data[,c("Hours_Studied","Sleep_Hours","Stress_Level","Recommendation")]
## Hours_Studied Sleep_Hours Stress_Level Recommendation
## 1 8.20 7.3 2.3 Good Performance Habit
## 2 4.07 7.9 3.6 Good Performance Habit
## 3 5.07 6.7 2.6 Good Performance Habit
## 4 5.82 3.7 3.3 Improve Sleep
## 5 3.42 7.4 7.0 Reduce Stress
## 6 5.00 6.5 9.1 Reduce Stress
## 7 5.00 5.0 7.8 Improve Sleep
## 8 1.49 6.0 6.2 Increase Study Time
## 9 7.04 6.7 3.0 Good Performance Habit
## 10 6.20 6.4 4.6 Good Performance Habit
## 11 3.75 6.7 4.4 Good Performance Habit
## 12 4.66 7.1 9.4 Reduce Stress
## 13 6.01 5.8 6.7 Improve Sleep
## 14 5.10 7.7 4.8 Good Performance Habit
## 15 4.67 6.5 5.1 Good Performance Habit
## 16 2.09 5.2 4.7 Increase Study Time
## 17 6.11 5.7 5.0 Improve Sleep
## 18 5.25 5.9 4.4 Improve Sleep
## 19 5.55 8.0 4.9 Good Performance Habit
## 20 1.95 7.2 5.1 Increase Study Time
## 21 8.30 6.5 10.0 Reduce Stress
## 22 5.31 7.0 3.5 Good Performance Habit
## 23 4.23 6.4 8.1 Reduce Stress
## 24 9.06 6.5 3.8 Good Performance Habit
## 25 4.91 7.7 10.0 Reduce Stress
## 26 2.10 7.2 7.1 Increase Study Time
## 27 4.19 7.0 5.8 Good Performance Habit
## 28 0.42 6.9 4.2 Increase Study Time
## 29 7.10 6.5 4.2 Good Performance Habit
## 30 4.17 7.8 5.2 Good Performance Habit
## 31 3.51 6.8 2.1 Reduce Screen Time
## 32 7.14 7.6 8.3 Reduce Stress
## 33 1.70 4.9 2.8 Increase Study Time
## 34 6.07 8.5 6.2 Reduce Stress
## 35 0.87 6.5 8.0 Increase Study Time
## 36 3.68 5.7 2.2 Improve Sleep
## 37 2.59 7.9 3.4 Increase Study Time
## 38 7.92 8.5 3.3 Good Performance Habit
## 39 8.53 8.3 7.7 Reduce Stress
## 40 4.34 7.8 6.7 Reduce Stress
## 41 6.68 7.0 5.3 Reduce Screen Time
## 42 4.64 6.9 6.2 Reduce Stress
## 43 6.14 8.7 2.8 Good Performance Habit
## 44 3.49 6.6 4.6 Good Performance Habit
## 45 1.58 7.8 4.9 Increase Study Time
## 46 1.39 8.3 7.9 Increase Study Time
## 47 5.77 8.1 2.2 Good Performance Habit
## 48 9.50 4.6 3.6 Improve Sleep
## 49 5.54 7.0 5.3 Reduce Screen Time
## 50 3.95 4.3 5.7 Improve Sleep
## 51 9.10 8.1 3.9 Good Performance Habit
## 52 5.47 7.8 5.1 Good Performance Habit
## 53 5.20 6.5 4.5 Reduce Screen Time
## 54 5.51 5.4 4.7 Improve Sleep
## 55 4.74 6.2 3.7 Good Performance Habit
## 56 4.38 5.8 5.1 Improve Sleep
## 57 2.13 7.5 4.9 Increase Study Time
## 58 6.00 6.9 5.4 Good Performance Habit
## 59 4.81 9.0 7.9 Reduce Stress
## 60 7.45 6.0 6.7 Reduce Stress
## 61 4.26 5.3 5.7 Improve Sleep
## 62 1.19 9.4 5.7 Increase Study Time
## 63 4.80 6.1 6.5 Reduce Stress
## 64 8.40 5.2 7.3 Improve Sleep
## 65 4.23 7.7 7.3 Reduce Stress
## 66 3.22 8.8 5.3 Reduce Screen Time
## 67 2.89 7.1 2.5 Increase Study Time
## 68 2.90 7.5 2.3 Increase Study Time
## 69 4.40 7.9 5.0 Reduce Screen Time
## 70 2.64 6.2 3.6 Increase Study Time
## 71 8.00 7.1 5.9 Good Performance Habit
## 72 4.43 8.0 8.0 Reduce Stress
## 73 5.66 6.5 6.3 Reduce Stress
## 74 7.88 9.3 5.0 Good Performance Habit
## 75 8.01 5.4 2.7 Improve Sleep
## 76 4.57 5.8 5.7 Improve Sleep
## 77 5.66 6.5 2.1 Reduce Screen Time
## 78 6.47 6.1 5.7 Good Performance Habit
## 79 4.61 6.6 5.8 Good Performance Habit
## 80 1.44 7.8 7.5 Increase Study Time
## 81 6.31 9.2 10.0 Reduce Stress
## 82 6.79 5.2 5.5 Improve Sleep
## 83 5.83 6.1 10.0 Reduce Stress
## 84 3.15 5.3 7.1 Improve Sleep
## 85 4.61 7.1 3.8 Reduce Screen Time
## 86 3.82 6.2 5.5 Good Performance Habit
## 87 4.40 6.0 5.9 Good Performance Habit
## 88 7.59 6.4 2.7 Good Performance Habit
## 89 8.06 7.4 4.9 Good Performance Habit
## 90 6.34 6.0 5.3 Good Performance Habit
## 91 6.10 7.0 8.1 Reduce Stress
## 92 6.35 5.5 2.6 Improve Sleep
## 93 4.98 9.0 5.8 Good Performance Habit
## 94 4.85 6.9 2.6 Good Performance Habit
## 95 3.65 8.7 4.4 Good Performance Habit
## 96 4.89 9.3 7.8 Reduce Stress
## 97 9.52 7.2 4.6 Good Performance Habit
## 98 6.74 5.2 5.5 Improve Sleep
## 99 4.32 7.5 5.8 Good Performance Habit
## 100 4.06 5.8 2.8 Improve Sleep
## 101 3.27 7.9 6.4 Reduce Stress
## 102 5.75 6.1 6.3 Reduce Stress
## 103 5.78 7.7 4.5 Good Performance Habit
## 104 2.11 7.5 8.4 Increase Study Time
## 105 5.97 5.2 9.5 Improve Sleep
## 106 3.86 8.8 7.7 Reduce Stress
## 107 7.85 10.0 6.4 Reduce Stress
## 108 5.31 5.9 2.7 Improve Sleep
## 109 8.44 6.9 3.2 Good Performance Habit
## 110 4.08 5.9 6.2 Improve Sleep
## 111 4.42 7.1 6.1 Reduce Stress
## 112 5.60 7.1 7.8 Reduce Stress
## 113 7.11 7.5 7.3 Reduce Stress
## 114 6.13 8.0 7.0 Reduce Stress
## 115 2.53 7.8 5.0 Increase Study Time
## 116 5.37 5.9 6.5 Improve Sleep
## 117 5.04 4.6 5.6 Improve Sleep
## 118 4.14 6.9 5.5 Good Performance Habit
## 119 3.70 6.9 5.8 Good Performance Habit
## 120 8.50 7.9 6.7 Reduce Stress
## 121 4.22 8.8 8.7 Reduce Stress
## 122 3.31 7.4 5.9 Good Performance Habit
## 123 6.27 6.5 5.3 Good Performance Habit
## 124 5.26 7.1 4.0 Good Performance Habit
## 125 4.85 6.5 7.2 Reduce Stress
## 126 6.56 7.2 3.7 Good Performance Habit
## 127 5.98 6.3 1.1 Good Performance Habit
## 128 5.72 7.5 7.8 Reduce Stress
## 129 6.93 6.1 9.7 Reduce Stress
## 130 5.57 5.5 5.3 Improve Sleep
## 131 3.77 7.2 5.7 Good Performance Habit
## 132 4.28 7.5 5.5 Good Performance Habit
## 133 3.96 7.6 6.9 Reduce Stress
## 134 5.42 5.6 2.2 Improve Sleep
## 135 2.84 5.0 1.2 Increase Study Time
## 136 1.34 5.3 3.9 Increase Study Time
## 137 5.18 8.5 8.1 Reduce Stress
## 138 2.33 8.0 6.0 Increase Study Time
## 139 1.10 7.6 3.3 Increase Study Time
## 140 5.75 8.6 5.1 Good Performance Habit
## 141 3.58 8.3 3.8 Good Performance Habit
## 142 5.99 8.5 3.2 Good Performance Habit
## 143 3.94 7.1 2.7 Good Performance Habit
## 144 2.76 9.2 5.3 Increase Study Time
## 145 2.51 8.8 5.3 Increase Study Time
## 146 3.97 5.9 5.9 Improve Sleep
## 147 4.45 8.0 5.4 Good Performance Habit
## 148 3.35 8.9 3.0 Reduce Screen Time
## 149 4.44 9.9 3.7 Reduce Screen Time
## 150 1.93 6.5 4.7 Increase Study Time
## 151 5.03 7.5 5.9 Good Performance Habit
## 152 1.41 7.5 3.6 Increase Study Time
## 153 4.61 6.0 7.0 Reduce Stress
## 154 6.39 6.9 2.7 Good Performance Habit
## 155 7.18 7.2 4.5 Good Performance Habit
## 156 8.43 5.4 1.0 Improve Sleep
## 157 1.89 7.4 1.7 Increase Study Time
## 158 6.52 6.4 9.8 Reduce Stress
## 159 7.41 6.0 5.9 Good Performance Habit
## 160 6.96 6.0 5.7 Good Performance Habit
## 161 3.14 8.0 7.8 Reduce Stress
## 162 5.82 8.2 2.2 Good Performance Habit
## 163 8.72 6.6 3.4 Good Performance Habit
## 164 2.01 6.7 6.6 Increase Study Time
## 165 5.95 4.4 2.4 Improve Sleep
## 166 7.22 7.0 4.2 Good Performance Habit
## 167 3.61 9.0 1.0 Reduce Screen Time
## 168 6.17 7.6 5.9 Good Performance Habit
## 169 2.86 8.3 8.0 Increase Study Time
## 170 3.38 7.2 6.6 Reduce Stress
## 171 3.37 6.2 3.9 Good Performance Habit
## 172 5.38 7.0 3.4 Good Performance Habit
## 173 4.82 8.5 7.3 Reduce Stress
## 174 6.91 8.0 1.0 Reduce Screen Time
## 175 3.12 6.0 4.2 Good Performance Habit
## 176 4.74 6.1 3.0 Good Performance Habit
## 177 6.92 7.9 5.7 Good Performance Habit
## 178 6.12 7.5 3.0 Good Performance Habit
## 179 2.35 9.0 5.8 Increase Study Time
## 180 6.33 6.0 1.7 Reduce Screen Time
## 181 4.04 4.7 2.8 Improve Sleep
## 182 5.77 7.1 6.9 Reduce Stress
## 183 5.60 5.3 9.8 Improve Sleep
## 184 7.44 6.5 3.0 Reduce Screen Time
## 185 5.23 6.6 1.2 Good Performance Habit
## 186 1.29 7.1 7.3 Increase Study Time
## 187 2.26 9.7 5.4 Increase Study Time
## 188 6.46 7.9 1.0 Reduce Screen Time
## 189 4.48 6.7 3.7 Good Performance Habit
## 190 7.28 6.2 5.2 Good Performance Habit
## 191 5.55 8.5 5.6 Good Performance Habit
## 192 3.50 6.9 7.0 Reduce Stress
## 193 7.16 5.6 6.2 Improve Sleep
## 194 3.39 7.5 3.3 Good Performance Habit
## 195 0.89 5.9 1.4 Increase Study Time
## 196 9.13 7.7 4.8 Good Performance Habit
## 197 1.18 9.2 6.3 Increase Study Time
## 198 6.27 5.8 7.9 Improve Sleep
## 199 6.88 7.4 7.1 Reduce Stress
## 200 5.29 6.6 4.4 Good Performance Habit
## 201 1.63 6.7 3.6 Increase Study Time
## 202 7.03 8.4 7.9 Reduce Stress
## 203 2.12 4.5 6.7 Increase Study Time
## 204 2.31 6.2 3.7 Increase Study Time
## 205 4.28 8.7 4.3 Good Performance Habit
## 206 6.58 6.3 6.0 Good Performance Habit
## 207 5.60 5.6 1.0 Improve Sleep
## 208 6.62 6.6 6.4 Reduce Stress
## 209 4.11 7.3 4.4 Good Performance Habit
## 210 4.66 7.5 2.5 Reduce Screen Time
## 211 2.73 8.1 2.4 Increase Study Time
## 212 4.37 8.8 3.2 Good Performance Habit
## 213 6.19 8.0 5.6 Good Performance Habit
## 214 4.40 7.7 3.6 Good Performance Habit
## 215 5.95 7.8 7.8 Reduce Stress
## 216 3.85 5.8 6.1 Improve Sleep
## 217 3.82 7.8 4.4 Reduce Screen Time
## 218 5.08 8.7 7.7 Reduce Stress
## 219 4.61 6.5 8.8 Reduce Stress
## 220 6.18 7.8 8.1 Reduce Stress
## 221 5.36 8.2 7.5 Reduce Stress
## 222 8.48 7.2 4.5 Good Performance Habit
## 223 4.56 7.3 7.0 Reduce Stress
## 224 4.55 5.9 6.2 Improve Sleep
## 225 2.92 6.3 9.6 Increase Study Time
## 226 5.05 7.7 5.0 Good Performance Habit
## 227 6.37 9.1 8.1 Reduce Stress
## 228 3.52 5.9 3.7 Improve Sleep
## 229 4.90 8.8 2.9 Good Performance Habit
## 230 6.44 6.8 2.9 Good Performance Habit
## 231 4.75 6.0 6.4 Reduce Stress
## 232 3.96 4.4 2.9 Improve Sleep
## 233 6.95 6.7 4.9 Good Performance Habit
## 234 5.19 7.6 3.9 Good Performance Habit
## 235 5.79 5.5 5.6 Improve Sleep
## 236 7.34 6.9 6.1 Reduce Stress
## 237 7.29 7.1 5.4 Good Performance Habit
## 238 4.31 7.7 6.7 Reduce Stress
## 239 3.95 7.5 2.2 Good Performance Habit
## 240 5.57 7.1 4.5 Good Performance Habit
## 241 4.73 8.1 2.3 Good Performance Habit
## 242 1.20 7.6 4.4 Increase Study Time
## 243 7.55 6.8 1.0 Good Performance Habit
## 244 5.04 6.6 1.0 Good Performance Habit
## 245 6.47 6.8 3.4 Good Performance Habit
## 246 2.65 4.4 6.3 Increase Study Time
## 247 7.58 7.1 1.5 Good Performance Habit
## 248 3.82 6.0 3.9 Good Performance Habit
## 249 4.78 8.0 7.4 Reduce Stress
## 250 2.20 7.2 8.0 Increase Study Time
## 251 4.67 7.5 6.1 Reduce Stress
## 252 4.54 6.2 3.9 Reduce Screen Time
## 253 4.63 7.5 6.2 Reduce Stress
## 254 5.88 7.0 3.7 Reduce Screen Time
## 255 5.12 5.0 1.2 Improve Sleep
## 256 6.95 4.9 3.6 Improve Sleep
## 257 4.06 5.0 6.7 Improve Sleep
## 258 3.01 7.3 3.2 Good Performance Habit
## 259 4.96 7.5 2.4 Good Performance Habit
## 260 6.26 7.1 1.9 Good Performance Habit
## 261 7.49 8.0 7.9 Reduce Stress
## 262 6.63 7.9 8.3 Reduce Stress
## 263 1.47 5.4 7.1 Increase Study Time
## 264 5.75 6.0 4.4 Reduce Screen Time
## 265 7.92 6.7 4.5 Reduce Screen Time
## 266 5.13 7.7 6.2 Reduce Stress
## 267 3.97 7.8 3.7 Good Performance Habit
## 268 5.62 6.1 4.7 Good Performance Habit
## 269 3.99 8.7 5.9 Reduce Screen Time
## 270 6.28 7.6 5.3 Reduce Screen Time
## 271 4.97 7.3 10.0 Reduce Stress
## 272 7.79 7.0 3.8 Good Performance Habit
## 273 6.00 7.5 4.6 Good Performance Habit
## 274 3.55 4.8 1.0 Improve Sleep
## 275 6.21 6.1 7.4 Reduce Stress
## 276 6.87 6.2 3.7 Good Performance Habit
## 277 3.86 7.7 5.9 Reduce Screen Time
## 278 4.15 7.7 3.1 Good Performance Habit
## 279 0.39 6.6 6.3 Increase Study Time
## 280 6.81 10.0 5.0 Good Performance Habit
## 281 3.82 3.8 4.5 Improve Sleep
## 282 0.76 6.1 5.4 Increase Study Time
## 283 1.46 9.3 6.5 Increase Study Time
## 284 4.55 8.0 4.4 Reduce Screen Time
## 285 6.52 5.0 7.9 Improve Sleep
## 286 4.82 8.0 3.3 Good Performance Habit
## 287 5.94 7.6 5.0 Good Performance Habit
## 288 2.80 8.5 5.0 Increase Study Time
## 289 2.32 8.5 1.8 Increase Study Time
## 290 6.77 7.0 3.7 Reduce Screen Time
## 291 5.98 6.3 7.7 Reduce Stress
## 292 4.94 6.5 3.8 Good Performance Habit
## 293 7.56 6.6 6.6 Reduce Stress
## 294 3.10 5.6 4.1 Improve Sleep
## 295 4.16 7.1 4.7 Good Performance Habit
## 296 7.05 6.8 4.6 Good Performance Habit
## 297 8.68 6.2 6.2 Reduce Stress
## 298 5.02 3.8 6.4 Improve Sleep
## 299 8.36 7.6 7.5 Reduce Stress
## 300 3.79 5.9 2.9 Improve Sleep
## 301 5.66 6.1 3.0 Good Performance Habit
## 302 4.65 8.1 7.9 Reduce Stress
## 303 1.82 5.9 6.0 Increase Study Time
## 304 5.52 8.2 2.6 Reduce Screen Time
## 305 6.87 6.8 5.9 Good Performance Habit
## 306 4.70 4.7 7.7 Improve Sleep
## 307 4.86 6.7 4.6 Reduce Screen Time
## 308 7.79 6.2 4.5 Good Performance Habit
## 309 2.50 7.1 4.4 Increase Study Time
## 310 2.00 6.6 5.2 Increase Study Time
## 311 3.69 7.4 1.1 Good Performance Habit
## 312 2.61 7.8 6.2 Increase Study Time
## 313 7.69 7.1 4.4 Good Performance Habit
## 314 5.62 8.4 7.8 Reduce Stress
## 315 3.27 5.8 2.6 Improve Sleep
## 316 3.77 6.9 4.6 Good Performance Habit
## 317 10.72 7.4 6.4 Reduce Stress
## 318 3.78 7.4 4.2 Good Performance Habit
## 319 3.48 9.0 4.5 Good Performance Habit
## 320 5.61 6.6 3.3 Good Performance Habit
## 321 6.28 7.9 2.6 Good Performance Habit
## 322 5.44 6.9 4.0 Reduce Screen Time
## 323 3.18 7.1 4.7 Good Performance Habit
## 324 2.68 5.5 5.7 Increase Study Time
## 325 6.19 7.0 7.8 Reduce Stress
## 326 4.89 6.3 3.8 Good Performance Habit
## 327 1.72 9.7 4.8 Increase Study Time
## 328 7.34 6.3 3.3 Reduce Screen Time
## 329 6.55 7.8 9.6 Reduce Stress
## 330 4.52 8.8 4.4 Good Performance Habit
## 331 4.48 8.0 2.5 Good Performance Habit
## 332 5.46 6.1 6.7 Reduce Stress
## 333 3.63 6.3 7.2 Reduce Stress
## 334 2.30 8.7 3.3 Increase Study Time
## 335 5.65 5.5 6.5 Improve Sleep
## 336 2.12 7.1 8.3 Increase Study Time
## 337 5.78 8.5 3.7 Good Performance Habit
## 338 2.12 5.0 4.1 Increase Study Time
## 339 4.80 6.0 4.9 Good Performance Habit
## 340 4.73 5.8 8.1 Improve Sleep
## 341 8.57 6.3 4.7 Good Performance Habit
## 342 2.87 7.7 5.0 Increase Study Time
## 343 2.17 5.8 3.7 Increase Study Time
## 344 3.71 6.2 5.1 Good Performance Habit
## 345 2.75 8.3 2.4 Increase Study Time
## 346 3.82 8.2 5.4 Good Performance Habit
## 347 5.84 6.5 4.0 Good Performance Habit
## 348 6.54 5.8 4.9 Improve Sleep
## 349 8.32 5.5 3.2 Improve Sleep
## 350 3.53 7.3 6.4 Reduce Stress
## 351 10.28 7.0 6.4 Reduce Stress
## 352 8.96 7.8 3.0 Good Performance Habit
## 353 4.59 7.2 3.5 Good Performance Habit
## 354 0.42 7.4 5.5 Increase Study Time
## 355 4.83 5.2 6.0 Improve Sleep
## 356 5.15 7.8 5.9 Good Performance Habit
## 357 0.40 4.7 6.9 Increase Study Time
## 358 5.15 8.8 5.6 Good Performance Habit
## 359 4.60 5.3 6.5 Improve Sleep
## 360 3.43 6.5 2.7 Good Performance Habit
## 361 6.25 5.6 3.8 Improve Sleep
## 362 7.01 8.5 6.5 Reduce Stress
## 363 4.03 6.8 3.8 Good Performance Habit
## 364 5.46 7.8 5.0 Good Performance Habit
## 365 3.69 7.7 5.8 Good Performance Habit
## 366 3.43 5.7 6.2 Improve Sleep
## 367 5.16 6.0 6.2 Reduce Stress
## 368 6.05 5.5 5.2 Improve Sleep
## 369 3.87 6.0 3.0 Good Performance Habit
## 370 0.57 7.8 5.8 Increase Study Time
## 371 6.17 7.5 3.5 Reduce Screen Time
## 372 1.81 7.7 4.0 Increase Study Time
## 373 5.24 5.9 2.3 Improve Sleep
## 374 8.56 5.8 6.3 Improve Sleep
## 375 4.97 8.3 6.2 Reduce Stress
## 376 2.62 7.3 4.1 Increase Study Time
## 377 2.08 7.2 5.7 Increase Study Time
## 378 7.34 6.8 6.0 Good Performance Habit
## 379 4.97 7.6 6.5 Reduce Stress
## 380 6.08 8.3 3.6 Good Performance Habit
## 381 6.85 6.6 5.3 Reduce Screen Time
## 382 4.90 6.3 6.4 Reduce Stress
## 383 4.38 5.2 3.5 Improve Sleep
## 384 3.11 6.6 3.6 Good Performance Habit
## 385 0.87 5.7 5.5 Increase Study Time
## 386 1.96 5.1 3.2 Increase Study Time
## 387 4.86 7.2 4.9 Good Performance Habit
## 388 4.65 7.2 5.7 Good Performance Habit
## 389 5.81 7.0 5.8 Good Performance Habit
## 390 4.75 5.1 4.5 Improve Sleep
## 391 5.32 5.9 6.9 Improve Sleep
## 392 6.58 6.3 3.0 Reduce Screen Time
## 393 3.23 9.3 5.2 Good Performance Habit
## 394 4.43 7.5 2.4 Reduce Screen Time
## 395 1.79 8.1 4.6 Increase Study Time
## 396 6.95 6.9 5.6 Good Performance Habit
## 397 5.08 5.7 10.0 Improve Sleep
## 398 5.98 9.3 9.2 Reduce Stress
## 399 8.08 7.3 4.8 Good Performance Habit
## 400 7.16 7.4 6.0 Good Performance Habit
## 401 4.88 8.0 6.1 Reduce Stress
## 402 6.58 6.8 5.3 Reduce Screen Time
## 403 2.14 7.3 2.4 Increase Study Time
## 404 5.87 5.4 5.4 Improve Sleep
## 405 5.28 7.2 2.6 Good Performance Habit
## 406 1.76 5.4 6.8 Increase Study Time
## 407 7.67 5.1 4.1 Improve Sleep
## 408 3.59 7.4 4.2 Good Performance Habit
## 409 6.37 5.7 6.4 Improve Sleep
## 410 4.16 6.3 3.7 Good Performance Habit
## 411 6.99 6.9 4.7 Good Performance Habit
## 412 7.62 6.8 7.4 Reduce Stress
## 413 3.34 8.5 5.7 Good Performance Habit
## 414 1.94 6.8 4.0 Increase Study Time
## 415 4.74 7.6 4.3 Good Performance Habit
## 416 6.70 7.9 1.1 Good Performance Habit
## 417 4.26 5.0 8.2 Improve Sleep
## 418 3.77 5.2 6.3 Improve Sleep
## 419 5.98 7.4 2.5 Good Performance Habit
## 420 1.45 6.3 9.6 Increase Study Time
## 421 3.67 5.6 5.8 Improve Sleep
## 422 2.23 7.9 1.0 Increase Study Time
## 423 5.59 7.4 6.5 Reduce Stress
## 424 3.53 6.4 4.5 Good Performance Habit
## 425 2.77 7.7 5.4 Increase Study Time
## 426 4.29 3.7 3.1 Improve Sleep
## 427 2.06 6.8 2.5 Increase Study Time
## 428 4.97 8.1 6.6 Reduce Stress
## 429 3.64 7.7 4.2 Good Performance Habit
## 430 4.25 7.0 5.1 Reduce Screen Time
## 431 3.57 8.4 9.8 Reduce Stress
## 432 6.82 7.7 3.7 Good Performance Habit
## 433 4.78 6.5 4.9 Good Performance Habit
## 434 6.05 7.2 4.6 Good Performance Habit
## 435 5.96 7.8 4.1 Reduce Screen Time
## 436 3.39 7.5 6.4 Reduce Stress
## 437 6.14 6.3 3.4 Good Performance Habit
## 438 5.70 3.3 4.8 Improve Sleep
## 439 5.63 9.4 5.8 Good Performance Habit
## 440 4.20 6.5 2.7 Reduce Screen Time
## 441 4.15 4.3 4.8 Improve Sleep
## 442 6.57 5.7 5.1 Improve Sleep
## 443 9.36 7.2 5.5 Reduce Screen Time
## 444 3.34 4.6 4.7 Improve Sleep
## 445 6.07 7.5 6.1 Reduce Stress
## 446 4.27 6.7 4.4 Good Performance Habit
## 447 6.57 8.6 6.4 Reduce Stress
## 448 5.88 5.9 7.7 Improve Sleep
## 449 7.12 7.0 3.6 Good Performance Habit
## 450 1.23 8.7 6.3 Increase Study Time
## 451 3.80 7.8 2.9 Reduce Screen Time
## 452 3.02 6.4 7.6 Reduce Stress
## 453 4.78 6.7 2.3 Good Performance Habit
## 454 3.55 7.1 8.1 Reduce Stress
## 455 3.72 4.8 7.3 Improve Sleep
## 456 6.36 7.5 2.2 Reduce Screen Time
## 457 8.80 7.5 6.0 Good Performance Habit
## 458 1.10 6.1 5.4 Increase Study Time
## 459 4.38 6.1 3.2 Good Performance Habit
## 460 5.62 7.1 6.4 Reduce Stress
## 461 5.01 8.4 2.2 Good Performance Habit
## 462 4.31 6.1 3.4 Good Performance Habit
## 463 2.29 6.5 4.6 Increase Study Time
## 464 3.11 6.3 4.5 Good Performance Habit
## 465 6.45 6.9 4.8 Reduce Screen Time
## 466 7.15 7.6 8.0 Reduce Stress
## 467 5.19 5.7 5.9 Improve Sleep
## 468 3.33 4.4 6.3 Improve Sleep
## 469 5.19 6.6 4.1 Reduce Screen Time
## 470 4.52 8.6 4.5 Reduce Screen Time
## 471 6.09 5.9 4.5 Improve Sleep
## 472 5.24 7.8 3.8 Good Performance Habit
## 473 3.76 7.1 2.6 Good Performance Habit
## 474 5.38 5.6 7.2 Improve Sleep
## 475 2.64 7.2 7.0 Increase Study Time
## 476 6.64 6.1 4.8 Reduce Screen Time
## 477 7.36 6.4 6.8 Reduce Stress
## 478 2.64 6.6 7.2 Increase Study Time
## 479 5.84 5.5 4.1 Improve Sleep
## 480 3.02 6.7 6.4 Reduce Stress
## 481 7.14 8.7 1.5 Good Performance Habit
## 482 6.81 7.4 2.2 Good Performance Habit
## 483 4.54 8.6 4.8 Good Performance Habit
## 484 6.99 5.7 5.5 Improve Sleep
## 485 4.14 10.0 6.3 Reduce Stress
## 486 3.71 7.6 4.2 Good Performance Habit
## 487 3.86 7.3 6.7 Reduce Stress
## 488 4.72 6.2 4.8 Good Performance Habit
## 489 4.35 5.7 4.7 Improve Sleep
## 490 5.31 7.0 5.2 Good Performance Habit
## 491 3.77 8.6 5.4 Good Performance Habit
## 492 6.53 7.3 5.7 Good Performance Habit
## 493 7.04 9.9 6.4 Reduce Stress
## 494 4.01 6.5 5.1 Good Performance Habit
## 495 2.15 5.2 5.8 Increase Study Time
## 496 6.45 6.4 4.2 Good Performance Habit
## 497 7.28 8.5 5.9 Good Performance Habit
## 498 4.67 8.4 5.8 Good Performance Habit
## 499 2.43 5.6 6.5 Increase Study Time
## 500 5.53 6.0 4.3 Good Performance Habit
## 501 8.05 8.4 3.7 Good Performance Habit
## 502 1.25 4.8 5.1 Increase Study Time
## 503 5.96 7.7 5.2 Good Performance Habit
## 504 4.37 5.8 4.2 Improve Sleep
## 505 3.29 6.5 4.7 Good Performance Habit
## 506 6.00 6.3 6.9 Reduce Stress
## 507 2.40 7.9 3.0 Increase Study Time
## 508 5.59 8.5 5.7 Good Performance Habit
## 509 7.63 6.3 2.1 Good Performance Habit
## 510 5.35 8.3 6.1 Reduce Stress
## 511 3.25 7.6 4.9 Reduce Screen Time
## 512 1.44 5.8 4.7 Increase Study Time
## 513 2.44 6.0 4.2 Increase Study Time
## 514 1.32 7.3 5.5 Increase Study Time
## 515 8.20 6.5 3.9 Good Performance Habit
## 516 4.50 6.4 4.9 Good Performance Habit
## 517 2.91 8.0 3.0 Increase Study Time
## 518 2.40 7.4 5.3 Increase Study Time
## 519 2.87 5.4 5.0 Increase Study Time
## 520 4.33 8.3 7.0 Reduce Stress
## 521 2.43 7.8 5.2 Increase Study Time
## 522 8.35 7.5 3.5 Reduce Screen Time
## 523 3.51 7.7 5.9 Good Performance Habit
## 524 3.43 5.3 6.6 Improve Sleep
## 525 5.62 7.1 3.6 Good Performance Habit
## 526 7.90 6.0 5.5 Good Performance Habit
## 527 7.65 6.5 2.6 Good Performance Habit
## 528 4.02 9.0 1.0 Good Performance Habit
## 529 5.51 6.4 5.5 Good Performance Habit
## 530 5.30 8.8 8.1 Reduce Stress
## 531 6.06 6.6 5.2 Good Performance Habit
## 532 5.51 6.9 5.7 Good Performance Habit
## 533 3.11 8.0 1.3 Good Performance Habit
## 534 2.48 7.6 6.5 Increase Study Time
## 535 5.35 5.1 5.7 Improve Sleep
## 536 2.63 7.5 9.4 Increase Study Time
## 537 7.73 6.1 3.6 Good Performance Habit
## 538 5.08 6.6 5.9 Good Performance Habit
## 539 2.95 7.3 1.9 Increase Study Time
## 540 4.36 6.3 6.1 Reduce Stress
## 541 3.99 4.6 4.0 Improve Sleep
## 542 4.74 6.9 4.4 Good Performance Habit
## 543 6.89 6.7 5.6 Good Performance Habit
## 544 2.11 6.2 4.0 Increase Study Time
## 545 1.26 5.6 5.1 Increase Study Time
## 546 5.68 6.8 5.8 Good Performance Habit
## 547 4.65 7.0 8.5 Reduce Stress
## 548 5.33 6.5 1.1 Good Performance Habit
## 549 5.89 8.2 3.6 Good Performance Habit
## 550 4.64 6.7 2.7 Good Performance Habit
## 551 6.60 7.1 4.6 Good Performance Habit
## 552 3.21 5.2 4.1 Improve Sleep
## 553 5.13 6.6 1.0 Reduce Screen Time
## 554 3.34 9.7 7.6 Reduce Stress
## 555 2.74 4.7 3.2 Increase Study Time
## 556 6.23 7.9 7.7 Reduce Stress
## 557 6.14 7.2 8.2 Reduce Stress
## 558 1.12 6.8 8.4 Increase Study Time
## 559 2.76 6.8 7.3 Increase Study Time
## 560 5.58 7.1 4.0 Good Performance Habit
## 561 7.14 5.1 4.1 Improve Sleep
## 562 3.67 8.8 6.5 Reduce Stress
## 563 4.63 7.4 7.4 Reduce Stress
## 564 2.17 8.5 4.4 Increase Study Time
## 565 10.02 7.5 5.6 Good Performance Habit
## 566 5.95 7.8 5.2 Good Performance Habit
## 567 6.79 7.8 2.6 Reduce Screen Time
## 568 6.32 7.2 2.5 Good Performance Habit
## 569 6.87 8.9 3.8 Reduce Screen Time
## 570 6.22 7.4 5.9 Good Performance Habit
## 571 4.33 7.3 1.6 Good Performance Habit
## 572 6.49 6.2 3.0 Good Performance Habit
## 573 5.16 6.7 9.1 Reduce Stress
## 574 7.59 8.4 4.2 Reduce Screen Time
## 575 3.53 6.4 9.0 Reduce Stress
## 576 3.92 8.0 5.2 Reduce Screen Time
## 577 6.32 7.0 7.2 Reduce Stress
## 578 7.56 5.2 5.7 Improve Sleep
## 579 5.29 7.9 6.8 Reduce Stress
## 580 3.57 7.0 6.2 Reduce Stress
## 581 4.76 6.9 5.8 Good Performance Habit
## 582 4.00 8.3 4.4 Good Performance Habit
## 583 8.79 7.4 2.6 Good Performance Habit
## 584 6.80 5.7 6.5 Improve Sleep
## 585 7.53 7.3 4.3 Good Performance Habit
## 586 5.60 6.2 4.1 Good Performance Habit
## 587 3.89 6.0 3.7 Good Performance Habit
## 588 7.35 8.9 8.8 Reduce Stress
## 589 8.31 4.3 4.8 Improve Sleep
## 590 6.16 6.4 9.5 Reduce Stress
## 591 4.95 6.3 5.0 Good Performance Habit
## 592 7.16 7.9 6.5 Reduce Stress
## 593 4.26 8.4 5.5 Good Performance Habit
## 594 6.53 6.1 6.1 Reduce Stress
## 595 3.58 3.8 6.2 Improve Sleep
## 596 3.06 9.2 2.7 Good Performance Habit
## 597 6.13 6.0 4.3 Reduce Screen Time
## 598 5.68 6.7 3.8 Good Performance Habit
## 599 8.81 6.6 7.5 Reduce Stress
## 600 4.44 6.6 5.0 Good Performance Habit
## 601 5.05 7.2 4.3 Good Performance Habit
## 602 2.72 5.8 6.5 Increase Study Time
## 603 1.26 7.6 3.9 Increase Study Time
## 604 1.44 7.9 3.7 Increase Study Time
## 605 5.93 6.1 3.8 Good Performance Habit
## 606 2.65 6.0 6.0 Increase Study Time
## 607 7.25 8.3 5.8 Good Performance Habit
## 608 7.84 8.7 4.3 Good Performance Habit
## 609 4.43 7.7 1.0 Reduce Screen Time
## 610 8.32 8.0 5.7 Good Performance Habit
## 611 5.45 4.6 4.6 Improve Sleep
## 612 7.25 7.3 3.7 Good Performance Habit
## 613 4.55 7.2 8.2 Reduce Stress
## 614 6.92 6.9 3.0 Reduce Screen Time
## 615 3.11 8.1 6.0 Good Performance Habit
## 616 6.25 8.3 4.1 Good Performance Habit
## 617 4.08 7.0 5.1 Good Performance Habit
## 618 4.74 6.7 6.8 Reduce Stress
## 619 6.26 8.8 3.3 Good Performance Habit
## 620 5.35 6.5 3.9 Good Performance Habit
## 621 4.85 6.3 6.2 Reduce Stress
## 622 6.46 8.1 4.5 Good Performance Habit
## 623 6.61 6.9 4.4 Good Performance Habit
## 624 2.23 9.1 5.1 Increase Study Time
## 625 6.12 9.0 3.7 Good Performance Habit
## 626 6.34 8.2 5.9 Good Performance Habit
## 627 3.50 7.3 6.4 Reduce Stress
## 628 5.77 7.2 3.1 Good Performance Habit
## 629 2.35 6.6 2.6 Increase Study Time
## 630 7.88 9.6 6.4 Reduce Stress
## 631 4.52 7.4 9.7 Reduce Stress
## 632 4.84 7.6 5.6 Reduce Screen Time
## 633 7.39 7.4 1.8 Good Performance Habit
## 634 4.71 7.1 5.3 Good Performance Habit
## 635 6.20 5.5 2.1 Improve Sleep
## 636 2.91 7.6 3.9 Increase Study Time
## 637 3.86 8.3 4.9 Good Performance Habit
## 638 2.22 5.7 4.9 Increase Study Time
## 639 4.58 4.6 3.0 Improve Sleep
## 640 7.06 6.4 8.3 Reduce Stress
## 641 5.45 6.8 3.0 Good Performance Habit
## 642 6.77 7.7 8.6 Reduce Stress
## 643 2.95 6.2 7.6 Increase Study Time
## 644 3.23 7.5 2.3 Good Performance Habit
## 645 4.07 6.0 7.0 Reduce Stress
## 646 6.15 4.7 5.5 Improve Sleep
## 647 5.71 8.4 4.2 Reduce Screen Time
## 648 4.97 7.0 3.1 Good Performance Habit
## 649 6.25 6.4 4.6 Reduce Screen Time
## 650 4.70 6.1 6.4 Reduce Stress
## 651 4.96 7.7 4.4 Reduce Screen Time
## 652 7.61 5.4 6.0 Improve Sleep
## 653 3.83 7.2 7.8 Reduce Stress
## 654 5.37 8.4 7.1 Reduce Stress
## 655 8.22 6.5 2.8 Good Performance Habit
## 656 5.20 7.9 1.8 Good Performance Habit
## 657 6.41 8.8 4.1 Good Performance Habit
## 658 3.79 9.8 8.0 Reduce Stress
## 659 8.91 8.3 5.5 Reduce Screen Time
## 660 0.50 5.9 5.2 Increase Study Time
## 661 2.73 5.4 2.6 Increase Study Time
## 662 2.89 6.8 2.3 Increase Study Time
## 663 8.24 9.4 7.2 Reduce Stress
## 664 5.70 6.8 6.1 Reduce Stress
## 665 4.48 8.2 4.2 Good Performance Habit
## 666 2.44 7.7 5.3 Increase Study Time
## 667 5.73 9.6 2.4 Reduce Screen Time
## 668 5.23 7.1 5.1 Reduce Screen Time
## 669 3.61 6.8 6.0 Good Performance Habit
## 670 2.02 6.3 7.1 Increase Study Time
## 671 2.79 7.4 3.6 Increase Study Time
## 672 5.43 7.6 1.0 Reduce Screen Time
## 673 5.62 7.3 5.6 Good Performance Habit
## 674 5.15 7.9 4.4 Good Performance Habit
## 675 4.70 7.4 4.0 Good Performance Habit
## 676 1.46 6.6 4.1 Increase Study Time
## 677 5.10 7.0 2.9 Good Performance Habit
## 678 2.93 6.7 9.7 Increase Study Time
## 679 5.08 7.5 3.9 Reduce Screen Time
## 680 5.93 7.2 5.1 Reduce Screen Time
## 681 3.65 9.3 2.7 Reduce Screen Time
## 682 2.95 7.4 5.0 Increase Study Time
## 683 6.99 6.0 6.2 Reduce Stress
## 684 5.70 6.8 1.0 Good Performance Habit
## 685 3.73 5.1 1.8 Improve Sleep
## 686 0.66 6.8 1.0 Increase Study Time
## 687 4.90 7.5 6.5 Reduce Stress
## 688 6.26 6.5 4.5 Good Performance Habit
## 689 7.24 8.6 3.2 Good Performance Habit
## 690 3.64 7.3 4.0 Good Performance Habit
## 691 3.71 6.2 8.1 Reduce Stress
## 692 4.11 8.0 4.4 Good Performance Habit
## 693 6.68 7.9 2.6 Good Performance Habit
## 694 2.65 6.9 4.2 Increase Study Time
## 695 4.77 7.5 10.0 Reduce Stress
## 696 3.15 6.0 6.1 Reduce Stress
## 697 5.54 8.4 9.8 Reduce Stress
## 698 1.89 5.2 4.7 Increase Study Time
## 699 5.75 6.7 2.4 Good Performance Habit
## 700 4.01 5.6 3.5 Improve Sleep
## 701 4.55 7.0 2.6 Good Performance Habit
## 702 6.05 5.0 7.2 Improve Sleep
## 703 7.29 7.3 2.9 Good Performance Habit
## 704 1.61 7.0 5.2 Increase Study Time
## 705 7.01 5.5 3.8 Improve Sleep
## 706 6.12 7.4 6.2 Reduce Stress
## 707 4.41 5.0 4.3 Improve Sleep
## 708 7.81 6.4 9.1 Reduce Stress
## 709 5.38 7.1 5.0 Good Performance Habit
## 710 7.59 6.6 9.0 Reduce Stress
## 711 3.81 7.7 2.9 Good Performance Habit
## 712 3.27 5.4 7.8 Improve Sleep
## 713 7.45 5.1 3.5 Improve Sleep
## 714 9.33 8.7 5.6 Reduce Screen Time
## 715 6.27 5.3 5.2 Improve Sleep
## 716 6.78 9.0 5.3 Reduce Screen Time
## 717 4.05 7.7 6.5 Reduce Stress
## 718 2.35 8.0 4.6 Increase Study Time
## 719 4.55 6.8 10.0 Reduce Stress
## 720 8.00 5.9 5.7 Improve Sleep
## 721 1.28 6.9 3.5 Increase Study Time
## 722 4.01 7.1 6.6 Reduce Stress
## 723 1.17 6.4 3.2 Increase Study Time
## 724 5.22 5.6 6.0 Improve Sleep
## 725 6.75 7.7 1.9 Good Performance Habit
## 726 2.51 6.2 5.2 Increase Study Time
## 727 4.18 7.9 5.7 Reduce Screen Time
## 728 7.65 7.5 5.2 Good Performance Habit
## 729 4.82 8.8 5.2 Reduce Screen Time
## 730 2.52 8.1 5.6 Increase Study Time
## 731 2.37 4.3 8.4 Increase Study Time
## 732 0.97 7.5 3.9 Increase Study Time
## 733 6.55 7.1 6.8 Reduce Stress
## 734 3.51 9.9 7.2 Reduce Stress
## 735 7.10 6.8 5.4 Good Performance Habit
## 736 6.73 6.7 6.5 Reduce Stress
## 737 3.68 6.7 5.6 Good Performance Habit
## 738 3.94 6.9 3.8 Reduce Screen Time
## 739 6.56 6.2 1.6 Good Performance Habit
## 740 5.30 9.1 4.1 Good Performance Habit
## 741 5.54 7.5 6.1 Reduce Stress
## 742 1.71 7.7 5.9 Increase Study Time
## 743 6.80 8.6 4.6 Reduce Screen Time
## 744 3.25 5.4 1.0 Improve Sleep
## 745 0.46 8.9 6.7 Increase Study Time
## 746 3.77 6.7 6.2 Reduce Stress
## 747 5.84 7.5 1.3 Good Performance Habit
## 748 9.19 6.4 6.7 Reduce Stress
## 749 4.25 6.3 5.5 Good Performance Habit
## 750 2.34 6.5 8.3 Increase Study Time
## 751 9.25 7.6 6.0 Good Performance Habit
## 752 5.32 7.6 3.0 Good Performance Habit
## 753 4.48 7.3 7.3 Reduce Stress
## 754 2.85 8.4 1.2 Increase Study Time
## 755 2.99 6.6 6.7 Increase Study Time
## 756 7.96 5.4 5.0 Improve Sleep
## 757 4.46 5.9 2.8 Improve Sleep
## 758 3.92 6.6 8.1 Reduce Stress
## 759 3.98 8.3 4.3 Good Performance Habit
## 760 8.14 8.0 6.6 Reduce Stress
## 761 3.82 8.1 3.7 Good Performance Habit
## 762 6.26 7.7 5.1 Reduce Screen Time
## 763 5.53 6.2 2.6 Good Performance Habit
## 764 5.48 6.4 6.3 Reduce Stress
## 765 3.25 4.6 3.9 Improve Sleep
## 766 6.32 7.2 4.7 Reduce Screen Time
## 767 8.22 6.1 6.2 Reduce Stress
## 768 4.90 7.3 5.2 Good Performance Habit
## 769 3.16 7.4 2.6 Good Performance Habit
## 770 2.42 6.3 5.5 Increase Study Time
## 771 5.38 9.4 5.6 Reduce Screen Time
## 772 4.46 6.6 4.5 Good Performance Habit
## 773 4.79 5.9 8.7 Improve Sleep
## 774 5.02 8.5 3.7 Reduce Screen Time
## 775 2.05 6.2 4.8 Increase Study Time
## 776 6.56 9.2 7.2 Reduce Stress
## 777 5.47 8.0 5.9 Good Performance Habit
## 778 4.85 5.5 7.9 Improve Sleep
## 779 5.46 6.8 6.5 Reduce Stress
## 780 6.85 8.2 6.0 Good Performance Habit
## 781 5.11 7.8 4.6 Good Performance Habit
## 782 3.30 8.1 5.2 Good Performance Habit
## 783 7.33 7.8 4.3 Reduce Screen Time
## 784 4.13 7.7 6.4 Reduce Stress
## 785 3.55 6.6 4.6 Good Performance Habit
## 786 1.88 6.7 2.1 Increase Study Time
## 787 5.02 7.4 5.4 Good Performance Habit
## 788 2.90 7.9 1.7 Increase Study Time
## 789 3.96 7.9 2.6 Reduce Screen Time
## 790 5.90 6.1 4.9 Reduce Screen Time
## 791 5.07 6.4 4.1 Good Performance Habit
## 792 7.03 9.8 7.7 Reduce Stress
## 793 5.61 7.8 4.9 Good Performance Habit
## 794 4.19 6.7 7.8 Reduce Stress
## 795 4.34 5.6 5.7 Improve Sleep
## 796 3.99 7.2 4.5 Good Performance Habit
## 797 6.29 7.5 7.6 Reduce Stress
## 798 5.04 6.7 6.3 Reduce Stress
## 799 4.18 5.7 4.8 Improve Sleep
## 800 6.69 8.7 5.9 Good Performance Habit
## 801 5.19 6.7 3.5 Good Performance Habit
## 802 4.07 7.5 6.4 Reduce Stress
## 803 1.98 7.5 6.3 Increase Study Time
## 804 5.87 6.4 6.7 Reduce Stress
## 805 5.48 7.9 5.6 Good Performance Habit
## 806 5.10 6.2 3.2 Good Performance Habit
## 807 4.13 6.2 5.3 Good Performance Habit
## 808 3.33 9.2 5.3 Good Performance Habit
## 809 4.55 7.2 5.9 Good Performance Habit
## 810 5.46 7.4 3.7 Reduce Screen Time
## 811 4.74 6.1 7.1 Reduce Stress
## 812 4.71 7.9 5.0 Good Performance Habit
## 813 4.06 7.6 8.6 Reduce Stress
## 814 5.68 7.1 2.3 Good Performance Habit
## 815 5.47 7.9 4.9 Good Performance Habit
## 816 3.50 7.5 4.9 Good Performance Habit
## 817 6.52 5.7 6.4 Improve Sleep
## 818 6.58 6.9 4.6 Good Performance Habit
## 819 6.63 6.3 5.0 Good Performance Habit
## 820 4.74 5.8 4.6 Improve Sleep
## 821 4.61 7.7 5.9 Good Performance Habit
## 822 2.68 4.4 6.4 Increase Study Time
## 823 6.51 7.5 1.1 Good Performance Habit
## 824 0.73 6.7 4.5 Increase Study Time
## 825 4.22 8.6 2.8 Good Performance Habit
## 826 4.32 8.0 6.4 Reduce Stress
## 827 6.71 7.9 1.1 Good Performance Habit
## 828 5.00 7.6 4.3 Good Performance Habit
## 829 3.07 4.9 6.9 Improve Sleep
## 830 2.15 6.4 5.1 Increase Study Time
## 831 3.54 5.7 6.1 Improve Sleep
## 832 5.21 7.1 7.4 Reduce Stress
## 833 5.11 7.4 2.6 Good Performance Habit
## 834 4.60 6.6 7.4 Reduce Stress
## 835 3.63 6.2 2.3 Good Performance Habit
## 836 4.58 7.1 3.8 Reduce Screen Time
## 837 7.00 6.6 4.7 Good Performance Habit
## 838 2.80 6.4 3.4 Increase Study Time
## 839 5.07 9.7 4.5 Good Performance Habit
## 840 8.24 6.5 1.8 Good Performance Habit
## 841 6.11 6.2 3.6 Reduce Screen Time
## 842 4.09 7.0 5.3 Good Performance Habit
## 843 6.32 7.0 2.1 Good Performance Habit
## 844 3.50 8.0 4.6 Good Performance Habit
## 845 5.01 9.3 5.3 Good Performance Habit
## 846 8.11 5.6 5.3 Improve Sleep
## 847 8.79 9.1 9.0 Reduce Stress
## 848 1.58 7.5 3.1 Increase Study Time
## 849 6.40 6.4 4.7 Good Performance Habit
## 850 8.90 6.0 1.0 Good Performance Habit
## 851 3.91 8.7 5.3 Good Performance Habit
## 852 5.52 5.3 1.3 Improve Sleep
## 853 8.01 6.1 2.1 Good Performance Habit
## 854 4.01 8.6 5.7 Good Performance Habit
## 855 5.90 4.4 5.0 Improve Sleep
## 856 4.88 6.1 2.6 Good Performance Habit
## 857 1.15 8.5 4.3 Increase Study Time
## 858 5.69 7.2 6.9 Reduce Stress
## 859 4.63 6.6 1.1 Good Performance Habit
## 860 6.86 7.9 5.4 Good Performance Habit
## 861 9.19 4.8 6.7 Improve Sleep
## 862 6.37 5.6 4.1 Improve Sleep
## 863 4.27 7.7 3.2 Reduce Screen Time
## 864 5.90 6.3 5.7 Good Performance Habit
## 865 5.40 4.7 3.0 Improve Sleep
## 866 7.05 9.7 6.8 Reduce Stress
## 867 2.12 6.9 5.9 Increase Study Time
## 868 2.67 7.9 3.6 Increase Study Time
## 869 0.91 7.5 5.6 Increase Study Time
## 870 6.21 7.0 2.8 Good Performance Habit
## 871 4.96 6.2 5.6 Reduce Screen Time
## 872 3.72 6.9 6.4 Reduce Stress
## 873 3.55 4.6 3.5 Improve Sleep
## 874 3.86 5.9 5.5 Improve Sleep
## 875 3.14 8.1 6.8 Reduce Stress
## 876 4.36 6.7 3.8 Good Performance Habit
## 877 4.01 6.4 5.9 Good Performance Habit
## 878 7.78 7.1 3.0 Good Performance Habit
## 879 5.65 7.5 3.0 Good Performance Habit
## 880 3.36 8.0 1.0 Good Performance Habit
## 881 3.83 6.8 6.7 Reduce Stress
## 882 7.40 6.2 4.9 Good Performance Habit
## 883 5.90 5.7 4.0 Improve Sleep
## 884 5.59 6.4 3.8 Reduce Screen Time
## 885 6.44 5.2 5.2 Improve Sleep
## 886 8.17 7.2 3.6 Good Performance Habit
## 887 2.57 6.4 6.6 Increase Study Time
## 888 3.51 7.6 6.2 Reduce Stress
## 889 1.52 6.7 4.3 Increase Study Time
## 890 5.99 6.2 8.5 Reduce Stress
## 891 4.24 6.1 7.0 Reduce Stress
## 892 3.66 7.6 7.8 Reduce Stress
## 893 3.48 5.9 6.7 Improve Sleep
## 894 6.38 6.9 3.7 Reduce Screen Time
## 895 4.72 8.8 7.1 Reduce Stress
## 896 3.94 8.5 3.6 Good Performance Habit
## 897 7.51 7.1 5.2 Good Performance Habit
## 898 2.91 7.3 6.3 Increase Study Time
## 899 2.47 7.6 4.4 Increase Study Time
## 900 10.19 7.6 5.2 Good Performance Habit
## 901 4.26 6.6 3.5 Good Performance Habit
## 902 3.91 6.1 5.7 Good Performance Habit
## 903 3.55 5.1 2.1 Improve Sleep
## 904 4.73 8.5 6.0 Good Performance Habit
## 905 6.57 8.4 6.3 Reduce Stress
## 906 6.51 8.9 3.9 Good Performance Habit
## 907 6.09 6.9 2.5 Good Performance Habit
## 908 4.44 8.0 6.9 Reduce Stress
## 909 2.02 8.2 1.4 Increase Study Time
## 910 5.57 7.8 4.5 Good Performance Habit
## 911 8.04 8.7 4.3 Good Performance Habit
## 912 7.14 7.3 8.6 Reduce Stress
## 913 4.66 6.2 4.1 Good Performance Habit
## 914 6.61 9.2 4.4 Good Performance Habit
## 915 4.23 5.6 3.2 Improve Sleep
## 916 4.89 7.9 2.0 Good Performance Habit
## 917 2.53 6.6 4.2 Increase Study Time
## 918 4.37 8.2 5.0 Good Performance Habit
## 919 5.28 6.1 5.1 Reduce Screen Time
## 920 4.66 6.8 5.8 Good Performance Habit
## 921 6.54 6.1 2.0 Reduce Screen Time
## 922 8.77 8.3 6.0 Good Performance Habit
## 923 7.64 6.3 7.4 Reduce Stress
## 924 4.39 5.4 3.3 Improve Sleep
## 925 3.54 5.8 3.2 Improve Sleep
## 926 3.69 6.8 7.8 Reduce Stress
## 927 3.04 6.9 5.0 Good Performance Habit
## 928 5.07 5.7 6.7 Improve Sleep
## 929 5.84 9.0 6.3 Reduce Stress
## 930 5.37 4.8 5.9 Improve Sleep
## 931 5.39 6.6 5.8 Reduce Screen Time
## 932 5.32 6.2 7.9 Reduce Stress
## 933 4.74 6.3 3.9 Good Performance Habit
## 934 3.52 6.8 5.9 Reduce Screen Time
## 935 8.45 5.3 8.8 Improve Sleep
## 936 7.10 5.9 3.3 Improve Sleep
## 937 3.18 6.4 2.9 Good Performance Habit
## 938 3.19 5.7 3.6 Improve Sleep
## 939 3.83 7.5 4.5 Good Performance Habit
## 940 5.07 5.8 4.8 Improve Sleep
## 941 7.52 8.5 7.2 Reduce Stress
## 942 7.03 5.4 6.1 Improve Sleep
## 943 7.14 9.0 6.7 Reduce Stress
## 944 7.18 6.6 2.7 Good Performance Habit
## 945 7.21 9.5 7.3 Reduce Stress
## 946 6.47 7.2 6.1 Reduce Stress
## 947 5.91 7.1 1.9 Good Performance Habit
## 948 4.76 7.7 4.3 Good Performance Habit
## 949 1.51 3.0 7.0 Increase Study Time
## 950 4.74 5.6 3.3 Improve Sleep
## 951 8.60 6.1 6.0 Reduce Screen Time
## 952 3.92 5.3 5.5 Improve Sleep
## 953 3.75 7.8 6.9 Reduce Stress
## 954 7.03 10.0 2.8 Reduce Screen Time
## 955 5.16 3.8 3.2 Improve Sleep
## 956 4.04 5.9 2.1 Improve Sleep
## 957 8.12 7.2 6.3 Reduce Stress
## 958 6.25 6.1 5.4 Good Performance Habit
## 959 6.52 7.9 5.7 Good Performance Habit
## 960 3.87 6.7 3.3 Good Performance Habit
## 961 5.99 7.8 6.1 Reduce Stress
## 962 5.75 8.9 8.5 Reduce Stress
## 963 6.55 7.1 2.6 Good Performance Habit
## 964 7.30 7.8 6.1 Reduce Stress
## 965 7.25 6.6 4.7 Good Performance Habit
## 966 5.34 5.7 4.3 Improve Sleep
## 967 6.38 7.6 2.8 Good Performance Habit
## 968 2.71 7.0 6.9 Increase Study Time
## 969 6.29 6.6 6.2 Reduce Stress
## 970 6.37 6.3 6.7 Reduce Stress
## 971 4.22 6.1 4.4 Reduce Screen Time
## 972 3.45 7.4 3.5 Reduce Screen Time
## 973 4.88 6.9 4.0 Good Performance Habit
## 974 2.57 5.2 4.2 Increase Study Time
## 975 5.68 6.7 6.1 Reduce Stress
## 976 5.59 8.4 3.4 Good Performance Habit
## 977 3.10 8.2 2.0 Good Performance Habit
## 978 5.10 6.8 5.3 Good Performance Habit
## 979 7.14 7.3 7.8 Reduce Stress
## 980 7.13 6.5 6.4 Reduce Stress
## 981 7.02 9.5 2.6 Good Performance Habit
## 982 4.70 7.7 3.0 Reduce Screen Time
## 983 4.32 6.6 6.1 Reduce Stress
## 984 4.22 8.2 5.5 Good Performance Habit
## 985 6.19 6.5 7.2 Reduce Stress
## 986 9.70 6.5 4.9 Good Performance Habit
## 987 7.81 5.2 3.5 Improve Sleep
## 988 8.17 5.9 6.2 Improve Sleep
## 989 7.70 6.1 2.9 Reduce Screen Time
## 990 1.77 6.2 2.2 Increase Study Time
## 991 4.60 5.9 6.7 Improve Sleep
## 992 4.13 7.0 5.6 Good Performance Habit
## 993 7.50 6.0 5.2 Good Performance Habit
## 994 8.38 8.9 3.1 Good Performance Habit
## 995 3.67 6.5 6.1 Reduce Stress
## 996 5.08 5.5 5.5 Improve Sleep
## 997 6.11 7.7 8.3 Reduce Stress
## 998 4.02 7.0 3.6 Good Performance Habit
## 999 3.74 7.0 3.3 Good Performance Habit
## 1000 3.65 6.5 4.2 Reduce Screen Time
## 1001 6.77 8.7 4.3 Good Performance Habit
## 1002 3.18 6.1 4.6 Good Performance Habit
## 1003 7.27 8.2 1.8 Good Performance Habit
## 1004 5.17 7.1 3.6 Good Performance Habit
## 1005 6.50 8.0 7.5 Reduce Stress
## 1006 8.09 7.1 4.3 Good Performance Habit
## 1007 3.66 9.4 7.5 Reduce Stress
## 1008 3.37 6.5 7.0 Reduce Stress
## 1009 5.85 7.4 5.4 Reduce Screen Time
## 1010 2.94 6.7 5.6 Increase Study Time
## 1011 3.54 7.1 4.4 Good Performance Habit
## 1012 4.77 5.9 5.6 Improve Sleep
## 1013 5.31 6.4 8.2 Reduce Stress
## 1014 2.51 5.7 6.6 Increase Study Time
## 1015 4.24 6.0 7.8 Reduce Stress
## 1016 6.16 7.5 3.7 Good Performance Habit
## 1017 7.69 7.5 3.8 Good Performance Habit
## 1018 1.08 7.4 7.6 Increase Study Time
## 1019 7.61 6.9 7.4 Reduce Stress
## 1020 6.76 6.0 4.0 Good Performance Habit
## 1021 2.83 7.3 3.8 Increase Study Time
## 1022 2.07 5.9 5.9 Increase Study Time
## 1023 5.83 5.4 4.5 Improve Sleep
## 1024 4.16 8.3 5.5 Reduce Screen Time
## 1025 5.27 7.3 6.9 Reduce Stress
## 1026 6.72 7.0 5.3 Good Performance Habit
## 1027 4.26 9.1 4.6 Reduce Screen Time
## 1028 5.32 6.8 7.3 Reduce Stress
## 1029 5.95 8.7 5.0 Reduce Screen Time
## 1030 6.77 5.9 4.3 Improve Sleep
## 1031 8.51 5.4 2.7 Improve Sleep
## 1032 8.39 5.6 9.4 Improve Sleep
## 1033 5.48 7.9 5.6 Good Performance Habit
## 1034 4.53 7.8 6.3 Reduce Stress
## 1035 9.73 6.8 7.3 Reduce Stress
## 1036 6.28 5.2 6.5 Improve Sleep
## 1037 5.85 6.1 2.5 Good Performance Habit
## 1038 2.81 7.8 6.4 Increase Study Time
## 1039 6.55 7.4 6.9 Reduce Stress
## 1040 3.45 5.9 2.9 Improve Sleep
## 1041 4.09 7.1 4.4 Good Performance Habit
## 1042 2.34 9.8 7.6 Increase Study Time
## 1043 3.97 6.7 4.6 Good Performance Habit
## 1044 5.12 5.3 3.2 Improve Sleep
## 1045 2.02 6.9 6.3 Increase Study Time
## 1046 3.22 7.6 5.9 Good Performance Habit
## 1047 4.85 8.8 6.5 Reduce Stress
## 1048 2.49 7.2 2.9 Increase Study Time
## 1049 2.51 5.6 4.7 Increase Study Time
## 1050 3.35 6.7 3.9 Good Performance Habit
## 1051 2.20 8.4 1.8 Increase Study Time
## 1052 6.22 6.3 7.5 Reduce Stress
## 1053 3.02 8.4 2.6 Good Performance Habit
## 1054 6.53 5.5 4.5 Improve Sleep
## 1055 6.84 7.0 5.2 Good Performance Habit
## 1056 2.62 7.0 3.3 Increase Study Time
## 1057 5.08 5.8 5.4 Improve Sleep
## 1058 4.05 7.2 5.2 Good Performance Habit
## 1059 2.74 8.0 6.7 Increase Study Time
## 1060 4.33 6.6 4.1 Reduce Screen Time
## 1061 4.52 6.4 7.0 Reduce Stress
## 1062 6.42 7.6 4.6 Reduce Screen Time
## 1063 7.04 8.2 3.9 Good Performance Habit
## 1064 2.81 8.3 5.0 Increase Study Time
## 1065 4.19 6.7 4.2 Reduce Screen Time
## 1066 6.06 6.5 1.9 Good Performance Habit
## 1067 7.35 8.2 5.2 Reduce Screen Time
## 1068 0.13 8.1 3.9 Increase Study Time
## 1069 7.55 9.3 9.7 Reduce Stress
## 1070 4.67 7.1 6.5 Reduce Stress
## 1071 8.06 7.5 1.7 Good Performance Habit
## 1072 4.16 6.9 4.2 Good Performance Habit
## 1073 3.34 6.4 5.3 Reduce Screen Time
## 1074 5.09 10.0 8.7 Reduce Stress
## 1075 7.33 7.5 4.5 Good Performance Habit
## 1076 5.06 6.5 7.3 Reduce Stress
## 1077 0.30 7.1 2.9 Increase Study Time
## 1078 6.37 7.2 4.2 Good Performance Habit
## 1079 1.79 6.1 2.6 Increase Study Time
## 1080 3.05 5.2 2.9 Improve Sleep
## 1081 2.68 6.0 6.7 Increase Study Time
## 1082 1.33 6.2 7.6 Increase Study Time
## 1083 2.50 7.4 3.6 Increase Study Time
## 1084 3.03 7.5 3.1 Good Performance Habit
## 1085 3.78 4.2 7.9 Improve Sleep
## 1086 4.89 5.5 5.4 Improve Sleep
## 1087 4.33 5.7 1.1 Improve Sleep
## 1088 2.04 8.9 5.9 Increase Study Time
## 1089 4.64 7.6 3.8 Good Performance Habit
## 1090 6.95 6.4 4.0 Good Performance Habit
## 1091 6.90 6.6 6.1 Reduce Stress
## 1092 5.27 6.8 8.1 Reduce Stress
## 1093 6.24 5.1 7.7 Improve Sleep
## 1094 6.78 8.3 2.6 Good Performance Habit
## 1095 7.72 7.8 7.1 Reduce Stress
## 1096 8.39 7.2 4.6 Good Performance Habit
## 1097 4.36 7.0 1.0 Good Performance Habit
## 1098 4.46 6.6 1.0 Reduce Screen Time
## 1099 7.95 6.5 4.4 Good Performance Habit
## 1100 8.12 5.3 5.2 Improve Sleep
## 1101 8.08 7.7 10.0 Reduce Stress
## 1102 0.31 5.7 4.1 Increase Study Time
## 1103 4.56 7.0 4.4 Good Performance Habit
## 1104 0.66 6.5 6.9 Increase Study Time
## 1105 6.46 6.5 3.1 Reduce Screen Time
## 1106 5.11 7.5 4.9 Good Performance Habit
## 1107 5.10 6.8 7.1 Reduce Stress
## 1108 4.72 5.8 4.7 Improve Sleep
## 1109 7.61 7.8 1.6 Good Performance Habit
## 1110 4.41 8.6 4.2 Good Performance Habit
## 1111 7.07 7.2 7.3 Reduce Stress
## 1112 6.11 7.4 3.8 Good Performance Habit
## 1113 5.71 6.7 4.8 Good Performance Habit
## 1114 5.93 8.9 8.6 Reduce Stress
## 1115 5.22 7.5 4.5 Reduce Screen Time
## 1116 2.81 6.0 6.7 Increase Study Time
## 1117 6.43 8.3 7.2 Reduce Stress
## 1118 6.43 9.3 8.8 Reduce Stress
## 1119 4.71 7.4 4.0 Good Performance Habit
## 1120 6.46 5.8 9.2 Improve Sleep
## 1121 6.80 4.9 3.3 Improve Sleep
## 1122 2.44 5.8 5.1 Increase Study Time
## 1123 4.72 9.7 8.6 Reduce Stress
## 1124 4.11 6.0 4.4 Reduce Screen Time
## 1125 3.19 5.5 1.0 Improve Sleep
## 1126 5.64 6.8 3.9 Good Performance Habit
## 1127 3.31 7.8 6.1 Reduce Stress
## 1128 4.13 6.7 10.0 Reduce Stress
## 1129 5.49 6.6 3.4 Reduce Screen Time
## 1130 5.70 7.3 2.3 Reduce Screen Time
## 1131 5.64 8.5 4.5 Good Performance Habit
## 1132 9.47 7.6 7.1 Reduce Stress
## 1133 3.99 6.4 5.8 Good Performance Habit
## 1134 5.50 6.5 9.7 Reduce Stress
## 1135 2.59 7.3 5.4 Increase Study Time
## 1136 5.96 5.7 8.2 Improve Sleep
## 1137 7.31 7.3 5.2 Reduce Screen Time
## 1138 7.43 8.7 8.1 Reduce Stress
## 1139 3.73 6.7 9.0 Reduce Stress
## 1140 4.44 6.5 3.5 Good Performance Habit
## 1141 7.52 7.5 5.8 Good Performance Habit
## 1142 4.81 6.0 5.0 Good Performance Habit
## 1143 6.92 8.7 7.0 Reduce Stress
## 1144 3.06 8.3 4.1 Good Performance Habit
## 1145 7.77 8.0 3.1 Good Performance Habit
## 1146 7.05 7.2 6.7 Reduce Stress
## 1147 5.93 7.3 6.0 Good Performance Habit
## 1148 3.40 7.6 5.1 Reduce Screen Time
## 1149 4.68 5.7 5.6 Improve Sleep
## 1150 5.30 6.4 4.4 Good Performance Habit
## 1151 5.53 6.6 4.9 Good Performance Habit
## 1152 4.79 8.3 5.7 Good Performance Habit
## 1153 4.56 9.4 5.5 Good Performance Habit
## 1154 5.38 6.9 1.3 Good Performance Habit
## 1155 7.79 7.3 9.0 Reduce Stress
## 1156 0.98 7.3 5.9 Increase Study Time
## 1157 2.26 6.4 3.8 Increase Study Time
## 1158 1.91 6.4 5.2 Increase Study Time
## 1159 3.63 7.2 5.1 Good Performance Habit
## 1160 1.52 8.5 9.7 Increase Study Time
## 1161 6.11 5.5 5.5 Improve Sleep
## 1162 5.19 8.0 5.6 Good Performance Habit
## 1163 4.49 5.6 8.1 Improve Sleep
## 1164 3.64 8.0 3.9 Good Performance Habit
## 1165 5.31 6.8 8.9 Reduce Stress
## 1166 5.36 5.7 6.4 Improve Sleep
## 1167 5.66 5.3 6.6 Improve Sleep
## 1168 3.54 6.7 6.7 Reduce Stress
## 1169 6.30 8.1 6.3 Reduce Stress
## 1170 2.06 6.2 4.4 Increase Study Time
## 1171 7.50 7.1 2.1 Good Performance Habit
## 1172 0.56 5.9 6.6 Increase Study Time
## 1173 3.81 5.8 8.1 Improve Sleep
## 1174 2.60 6.4 4.4 Increase Study Time
## 1175 6.58 5.7 4.7 Improve Sleep
## 1176 2.03 7.2 6.3 Increase Study Time
## 1177 8.64 5.1 6.6 Improve Sleep
## 1178 1.91 8.8 7.5 Increase Study Time
## 1179 9.06 6.3 1.0 Reduce Screen Time
## 1180 5.90 6.1 3.0 Reduce Screen Time
## 1181 5.06 8.2 5.5 Good Performance Habit
## 1182 5.87 6.5 6.9 Reduce Stress
## 1183 9.39 8.3 6.5 Reduce Stress
## 1184 6.79 5.9 4.6 Improve Sleep
## 1185 0.53 6.0 4.3 Increase Study Time
## 1186 7.39 6.0 5.0 Good Performance Habit
## 1187 5.46 8.9 2.0 Reduce Screen Time
## 1188 1.77 4.9 10.0 Increase Study Time
## 1189 6.52 7.1 10.0 Reduce Stress
## 1190 2.58 9.1 5.5 Increase Study Time
## 1191 5.36 6.2 5.4 Good Performance Habit
## 1192 5.47 8.3 4.4 Reduce Screen Time
## 1193 3.70 7.8 1.6 Good Performance Habit
## 1194 6.30 7.7 6.6 Reduce Stress
## 1195 2.96 7.1 5.9 Increase Study Time
## 1196 5.38 6.6 6.8 Reduce Stress
## 1197 3.91 6.1 8.2 Reduce Stress
## 1198 4.63 7.2 4.6 Reduce Screen Time
## 1199 8.85 7.8 6.8 Reduce Stress
## 1200 5.22 6.7 4.9 Reduce Screen Time
## 1201 2.83 8.2 2.0 Increase Study Time
## 1202 4.77 7.9 3.1 Good Performance Habit
## 1203 3.46 7.4 4.8 Good Performance Habit
## 1204 5.05 6.6 4.4 Good Performance Habit
## 1205 5.32 7.7 6.0 Good Performance Habit
## 1206 5.17 7.2 4.5 Good Performance Habit
## 1207 5.17 9.4 4.3 Good Performance Habit
## 1208 3.91 7.3 6.2 Reduce Stress
## 1209 5.90 7.8 5.3 Good Performance Habit
## 1210 7.11 5.5 8.6 Improve Sleep
## 1211 3.76 7.1 5.8 Good Performance Habit
## 1212 4.88 8.9 4.6 Good Performance Habit
## 1213 5.12 7.5 3.8 Good Performance Habit
## 1214 7.51 8.1 7.3 Reduce Stress
## 1215 7.16 6.7 5.2 Good Performance Habit
## 1216 3.54 6.4 2.3 Good Performance Habit
## 1217 5.14 7.3 6.4 Reduce Stress
## 1218 2.01 5.7 5.6 Increase Study Time
## 1219 3.07 6.6 6.8 Reduce Stress
## 1220 5.03 9.6 6.5 Reduce Stress
## 1221 6.26 6.9 2.9 Good Performance Habit
## 1222 6.91 6.3 6.9 Reduce Stress
## 1223 4.38 8.6 2.9 Good Performance Habit
## 1224 2.29 7.5 4.7 Increase Study Time
## 1225 5.79 6.4 4.3 Good Performance Habit
## 1226 4.65 7.0 4.3 Reduce Screen Time
## 1227 5.85 6.8 3.5 Good Performance Habit
## 1228 5.32 6.3 3.4 Good Performance Habit
## 1229 6.43 7.2 7.8 Reduce Stress
## 1230 6.31 7.1 1.0 Good Performance Habit
## 1231 6.69 6.4 3.1 Good Performance Habit
## 1232 4.08 6.6 6.2 Reduce Stress
## 1233 6.99 8.7 1.6 Good Performance Habit
## 1234 3.99 8.9 3.3 Good Performance Habit
## 1235 5.17 7.2 2.2 Good Performance Habit
## 1236 8.72 4.2 1.8 Improve Sleep
## 1237 5.71 7.0 4.4 Reduce Screen Time
## 1238 2.67 5.3 6.1 Increase Study Time
## 1239 7.98 6.4 1.0 Good Performance Habit
## 1240 7.00 5.1 6.4 Improve Sleep
## 1241 7.28 9.1 4.9 Good Performance Habit
## 1242 5.39 6.9 3.4 Good Performance Habit
## 1243 5.69 8.7 4.3 Good Performance Habit
## 1244 4.53 4.4 5.0 Improve Sleep
## 1245 3.60 9.0 4.1 Good Performance Habit
## 1246 8.06 7.2 4.3 Reduce Screen Time
## 1247 4.26 8.1 4.3 Reduce Screen Time
## 1248 4.04 6.7 2.9 Good Performance Habit
## 1249 4.11 6.5 6.0 Good Performance Habit
## 1250 8.72 4.4 8.8 Improve Sleep
## 1251 6.76 6.6 4.2 Reduce Screen Time
## 1252 4.26 4.5 5.8 Improve Sleep
## 1253 4.91 6.5 9.3 Reduce Stress
## 1254 6.02 5.2 6.0 Improve Sleep
## 1255 6.76 6.5 2.4 Good Performance Habit
## 1256 1.78 9.5 4.7 Increase Study Time
## 1257 6.81 7.7 7.4 Reduce Stress
## 1258 4.56 7.5 3.7 Good Performance Habit
## 1259 3.63 7.4 4.4 Reduce Screen Time
## 1260 4.22 6.7 2.3 Good Performance Habit
## 1261 6.58 5.9 3.7 Improve Sleep
## 1262 8.52 7.9 6.4 Reduce Stress
## 1263 5.30 7.2 6.7 Reduce Stress
## 1264 6.11 5.5 4.7 Improve Sleep
## 1265 3.37 8.5 5.1 Good Performance Habit
## 1266 5.98 8.9 4.7 Good Performance Habit
## 1267 6.65 6.7 6.8 Reduce Stress
## 1268 2.02 8.0 8.7 Increase Study Time
## 1269 3.97 6.8 5.1 Good Performance Habit
## 1270 6.58 7.9 2.3 Reduce Screen Time
## 1271 1.48 6.2 6.7 Increase Study Time
## 1272 4.25 6.0 4.8 Good Performance Habit
## 1273 6.20 8.2 3.4 Good Performance Habit
## 1274 1.62 8.6 5.0 Increase Study Time
## 1275 4.21 7.5 4.9 Good Performance Habit
## 1276 5.11 7.9 4.1 Reduce Screen Time
## 1277 6.78 8.3 4.7 Reduce Screen Time
## 1278 2.44 7.6 8.0 Increase Study Time
## 1279 7.22 10.0 3.7 Reduce Screen Time
## 1280 5.61 8.5 6.6 Reduce Stress
## 1281 7.39 6.8 4.6 Reduce Screen Time
## 1282 7.33 6.8 3.8 Good Performance Habit
## 1283 5.68 7.1 7.7 Reduce Stress
## 1284 5.97 7.5 3.0 Good Performance Habit
## 1285 1.52 6.0 7.1 Increase Study Time
## 1286 2.30 7.3 4.2 Increase Study Time
## 1287 2.99 6.2 3.2 Increase Study Time
## 1288 4.30 6.5 8.1 Reduce Stress
## 1289 6.87 8.6 7.4 Reduce Stress
## 1290 1.43 7.5 8.5 Increase Study Time
## 1291 4.36 6.9 5.8 Good Performance Habit
## 1292 2.36 8.2 3.0 Increase Study Time
## 1293 1.88 7.8 6.8 Increase Study Time
## 1294 7.95 8.6 2.3 Reduce Screen Time
## 1295 5.20 8.1 6.1 Reduce Stress
## 1296 8.27 5.8 8.5 Improve Sleep
## 1297 7.37 7.3 7.0 Reduce Stress
## 1298 3.16 5.3 5.2 Improve Sleep
## 1299 1.29 8.8 5.4 Increase Study Time
## 1300 9.14 7.2 2.7 Good Performance Habit
## 1301 4.19 6.5 5.1 Good Performance Habit
## 1302 2.71 7.1 3.9 Increase Study Time
## 1303 6.38 5.8 3.4 Improve Sleep
## 1304 5.27 7.2 5.5 Good Performance Habit
## 1305 3.66 8.9 1.8 Good Performance Habit
## 1306 4.31 6.5 2.9 Reduce Screen Time
## 1307 5.32 7.3 4.5 Good Performance Habit
## 1308 5.15 6.9 5.6 Good Performance Habit
## 1309 6.51 7.8 6.2 Reduce Stress
## 1310 4.29 8.4 8.1 Reduce Stress
## 1311 4.31 4.5 5.5 Improve Sleep
## 1312 6.20 6.9 3.2 Reduce Screen Time
## 1313 5.63 5.7 4.3 Improve Sleep
## 1314 7.19 5.9 3.4 Improve Sleep
## 1315 4.50 7.9 6.8 Reduce Stress
## 1316 4.80 8.8 4.7 Good Performance Habit
## 1317 2.69 6.3 7.2 Increase Study Time
## 1318 8.00 8.1 6.2 Reduce Stress
## 1319 2.21 5.4 2.8 Increase Study Time
## 1320 5.40 7.3 5.6 Good Performance Habit
## 1321 3.22 7.4 7.0 Reduce Stress
## 1322 5.67 5.9 3.4 Improve Sleep
## 1323 6.49 7.9 2.7 Reduce Screen Time
## 1324 1.72 8.0 3.1 Increase Study Time
## 1325 4.58 6.6 4.2 Reduce Screen Time
## 1326 1.49 6.3 4.1 Increase Study Time
## 1327 7.81 8.0 6.1 Reduce Stress
## 1328 4.11 8.0 6.4 Reduce Stress
## 1329 1.85 7.6 2.3 Increase Study Time
## 1330 3.60 8.5 3.3 Good Performance Habit
## 1331 7.62 7.3 5.4 Good Performance Habit
## 1332 7.98 7.3 7.7 Reduce Stress
## 1333 7.54 6.5 5.5 Good Performance Habit
## 1334 3.43 7.5 8.4 Reduce Stress
## 1335 4.70 7.4 5.4 Good Performance Habit
## 1336 8.27 9.2 7.5 Reduce Stress
## 1337 3.54 8.4 6.5 Reduce Stress
## 1338 4.33 6.5 4.4 Good Performance Habit
## 1339 3.09 5.7 4.0 Improve Sleep
## 1340 2.67 5.7 5.4 Increase Study Time
## 1341 7.41 6.9 3.9 Good Performance Habit
## 1342 6.26 6.0 4.1 Good Performance Habit
## 1343 5.90 6.0 3.1 Good Performance Habit
## 1344 6.16 6.2 5.1 Good Performance Habit
## 1345 7.04 6.9 5.2 Good Performance Habit
## 1346 8.02 5.5 1.0 Improve Sleep
## 1347 4.99 5.5 4.8 Improve Sleep
## 1348 4.32 7.7 5.7 Good Performance Habit
## 1349 2.95 6.7 7.1 Increase Study Time
## 1350 7.16 7.1 4.1 Reduce Screen Time
## 1351 3.97 8.9 2.6 Good Performance Habit
## 1352 2.01 6.0 4.3 Increase Study Time
## 1353 4.46 7.0 4.3 Good Performance Habit
## 1354 5.05 9.5 3.4 Reduce Screen Time
## 1355 6.67 9.0 3.9 Good Performance Habit
## 1356 7.01 8.5 2.9 Reduce Screen Time
## 1357 3.54 5.1 3.8 Improve Sleep
## 1358 3.40 6.2 6.2 Reduce Stress
## 1359 4.34 7.2 3.8 Reduce Screen Time
## 1360 2.58 5.6 4.9 Increase Study Time
## 1361 4.78 5.8 3.0 Improve Sleep
## 1362 5.92 8.7 5.8 Good Performance Habit
## 1363 5.09 4.8 10.0 Improve Sleep
## 1364 1.77 5.9 2.0 Increase Study Time
## 1365 2.62 6.2 8.6 Increase Study Time
## 1366 7.57 10.0 3.4 Good Performance Habit
## 1367 2.97 6.9 8.2 Increase Study Time
## 1368 6.48 6.2 4.1 Good Performance Habit
## 1369 6.26 5.8 6.8 Improve Sleep
## 1370 4.36 6.3 5.6 Reduce Screen Time
## 1371 3.01 8.6 8.8 Reduce Stress
## 1372 5.42 6.7 2.8 Reduce Screen Time
## 1373 3.23 7.6 5.3 Good Performance Habit
## 1374 4.65 6.0 3.9 Good Performance Habit
## 1375 5.21 8.5 1.9 Good Performance Habit
## 1376 3.57 9.4 3.2 Good Performance Habit
## 1377 4.55 7.2 3.2 Good Performance Habit
## 1378 4.38 6.4 7.0 Reduce Stress
## 1379 2.53 5.5 1.5 Increase Study Time
## 1380 4.62 7.7 4.7 Reduce Screen Time
## 1381 3.73 6.3 7.6 Reduce Stress
## 1382 1.35 9.0 7.2 Increase Study Time
## 1383 4.32 7.7 5.7 Good Performance Habit
## 1384 4.43 5.5 4.2 Improve Sleep
## 1385 3.79 5.9 5.2 Improve Sleep
## 1386 0.88 5.7 6.0 Increase Study Time
## 1387 6.55 7.9 6.1 Reduce Stress
## 1388 6.37 9.0 6.5 Reduce Stress
## 1389 6.30 7.4 5.7 Good Performance Habit
## 1390 5.65 6.2 5.9 Good Performance Habit
## 1391 2.49 8.5 6.7 Increase Study Time
## 1392 5.25 6.8 8.4 Reduce Stress
## 1393 3.14 7.4 1.7 Good Performance Habit
## 1394 9.38 5.5 4.4 Improve Sleep
## 1395 3.96 7.2 5.4 Good Performance Habit
## 1396 6.34 7.5 5.1 Good Performance Habit
## 1397 1.90 5.5 6.4 Increase Study Time
## 1398 2.64 8.0 5.6 Increase Study Time
## 1399 3.93 7.9 6.9 Reduce Stress
## 1400 6.41 7.9 6.2 Reduce Stress
## 1401 6.10 3.0 2.8 Improve Sleep
## 1402 5.58 9.2 2.5 Good Performance Habit
## 1403 1.29 6.5 4.4 Increase Study Time
## 1404 7.26 6.8 4.1 Reduce Screen Time
## 1405 3.15 5.4 5.6 Improve Sleep
## 1406 8.23 6.5 8.6 Reduce Stress
## 1407 8.73 6.7 6.6 Reduce Stress
## 1408 6.65 8.4 3.1 Reduce Screen Time
## 1409 6.98 5.6 3.0 Improve Sleep
## 1410 2.48 7.3 4.2 Increase Study Time
## 1411 10.16 7.6 3.2 Good Performance Habit
## 1412 5.44 6.7 6.7 Reduce Stress
## 1413 7.00 7.0 3.4 Good Performance Habit
## 1414 3.28 7.4 6.2 Reduce Stress
## 1415 4.87 5.0 9.5 Improve Sleep
## 1416 2.63 6.5 4.7 Increase Study Time
## 1417 4.52 6.3 4.9 Good Performance Habit
## 1418 5.03 7.2 3.5 Good Performance Habit
## 1419 5.51 9.6 6.7 Reduce Stress
## 1420 7.79 5.9 5.6 Improve Sleep
## 1421 5.96 9.3 6.7 Reduce Stress
## 1422 5.49 6.3 9.3 Reduce Stress
## 1423 5.08 7.1 4.2 Reduce Screen Time
## 1424 9.02 7.6 2.2 Good Performance Habit
## 1425 3.84 4.8 2.1 Improve Sleep
## 1426 7.38 9.0 4.2 Good Performance Habit
## 1427 1.08 7.2 3.8 Increase Study Time
## 1428 3.24 7.3 4.0 Reduce Screen Time
## 1429 5.82 9.3 6.5 Reduce Stress
## 1430 4.68 6.7 5.6 Good Performance Habit
## 1431 11.01 7.5 3.5 Good Performance Habit
## 1432 10.16 5.3 1.8 Improve Sleep
## 1433 1.96 7.8 2.8 Increase Study Time
## 1434 2.86 6.8 6.1 Increase Study Time
## 1435 4.72 6.7 1.0 Good Performance Habit
## 1436 8.48 6.8 5.1 Reduce Screen Time
## 1437 7.27 8.1 8.2 Reduce Stress
## 1438 5.65 6.4 8.0 Reduce Stress
## 1439 2.17 7.9 5.1 Increase Study Time
## 1440 3.31 7.3 3.0 Reduce Screen Time
## 1441 1.37 4.5 4.4 Increase Study Time
## 1442 1.93 7.5 2.8 Increase Study Time
## 1443 5.86 7.4 8.4 Reduce Stress
## 1444 6.58 6.2 7.0 Reduce Stress
## 1445 2.40 6.2 6.0 Increase Study Time
## 1446 5.22 6.9 6.2 Reduce Stress
## 1447 8.26 7.6 1.0 Reduce Screen Time
## 1448 5.33 7.5 3.9 Reduce Screen Time
## 1449 4.40 5.2 10.0 Improve Sleep
## 1450 6.23 7.0 2.6 Reduce Screen Time
## 1451 6.06 5.3 4.7 Improve Sleep
## 1452 5.17 7.2 5.2 Reduce Screen Time
## 1453 3.94 7.4 7.2 Reduce Stress
## 1454 4.16 6.0 2.3 Good Performance Habit
## 1455 5.19 6.6 5.0 Good Performance Habit
## 1456 3.91 4.2 8.7 Improve Sleep
## 1457 7.68 6.5 2.8 Good Performance Habit
## 1458 6.80 4.4 7.3 Improve Sleep
## 1459 7.19 6.7 1.7 Good Performance Habit
## 1460 9.07 7.3 7.3 Reduce Stress
## 1461 8.17 7.1 4.3 Reduce Screen Time
## 1462 7.85 8.2 3.6 Good Performance Habit
## 1463 5.75 7.3 5.4 Reduce Screen Time
## 1464 4.62 7.3 8.9 Reduce Stress
## 1465 9.61 6.7 2.1 Good Performance Habit
## 1466 3.66 7.9 5.4 Good Performance Habit
## 1467 3.77 6.3 6.8 Reduce Stress
## 1468 3.27 9.1 5.8 Good Performance Habit
## 1469 5.44 6.8 6.1 Reduce Stress
## 1470 5.85 7.6 1.0 Reduce Screen Time
## 1471 7.07 6.9 5.4 Good Performance Habit
## 1472 4.56 8.1 7.1 Reduce Stress
## 1473 1.54 6.1 8.0 Increase Study Time
## 1474 5.65 7.5 3.1 Reduce Screen Time
## 1475 6.96 6.0 7.9 Reduce Stress
## 1476 5.07 9.0 2.1 Good Performance Habit
## 1477 4.74 6.3 5.4 Good Performance Habit
## 1478 6.13 6.8 4.2 Good Performance Habit
## 1479 7.87 5.4 1.0 Improve Sleep
## 1480 4.88 6.2 7.5 Reduce Stress
## 1481 2.17 5.5 8.1 Increase Study Time
## 1482 3.88 5.2 5.7 Improve Sleep
## 1483 4.68 8.1 4.7 Good Performance Habit
## 1484 1.41 5.6 8.8 Increase Study Time
## 1485 6.55 5.8 5.4 Improve Sleep
## 1486 3.47 7.3 5.4 Good Performance Habit
## 1487 6.02 9.9 5.6 Good Performance Habit
## 1488 5.40 4.1 5.5 Improve Sleep
## 1489 4.38 7.9 7.6 Reduce Stress
## 1490 8.26 7.0 4.9 Reduce Screen Time
## 1491 3.88 7.9 4.6 Good Performance Habit
## 1492 3.66 6.8 2.4 Reduce Screen Time
## 1493 5.59 7.7 7.1 Reduce Stress
## 1494 6.68 8.3 2.9 Reduce Screen Time
## 1495 5.00 6.3 6.8 Reduce Stress
## 1496 3.04 4.5 3.6 Improve Sleep
## 1497 6.39 5.2 5.0 Improve Sleep
## 1498 6.21 6.7 6.9 Reduce Stress
## 1499 9.15 7.4 7.6 Reduce Stress
## 1500 4.56 7.7 5.1 Good Performance Habit
## 1501 5.43 5.7 6.3 Improve Sleep
## 1502 3.87 6.8 4.7 Reduce Screen Time
## 1503 2.03 6.5 2.5 Increase Study Time
## 1504 5.15 7.4 1.5 Good Performance Habit
## 1505 6.70 7.2 6.2 Reduce Stress
## 1506 2.97 5.9 5.3 Increase Study Time
## 1507 3.65 8.2 4.6 Reduce Screen Time
## 1508 2.65 5.6 1.0 Increase Study Time
## 1509 7.68 9.2 7.7 Reduce Stress
## 1510 3.73 6.9 5.8 Good Performance Habit
## 1511 6.16 7.6 2.3 Reduce Screen Time
## 1512 3.27 6.7 2.3 Reduce Screen Time
## 1513 5.15 8.1 5.3 Good Performance Habit
## 1514 3.75 5.8 4.8 Improve Sleep
## 1515 0.31 5.2 6.2 Increase Study Time
## 1516 5.16 7.9 8.1 Reduce Stress
## 1517 6.06 4.1 4.8 Improve Sleep
## 1518 0.83 5.0 3.7 Increase Study Time
## 1519 4.65 8.0 3.8 Reduce Screen Time
## 1520 4.13 7.4 4.4 Good Performance Habit
## 1521 2.84 7.9 1.9 Increase Study Time
## 1522 4.50 5.5 6.6 Improve Sleep
## 1523 1.12 3.0 4.7 Increase Study Time
## 1524 5.50 4.7 2.3 Improve Sleep
## 1525 7.37 5.5 5.2 Improve Sleep
## 1526 2.48 10.0 6.0 Increase Study Time
## 1527 4.87 4.9 10.0 Improve Sleep
## 1528 7.85 6.7 4.1 Good Performance Habit
## 1529 5.24 6.7 4.9 Good Performance Habit
## 1530 3.96 8.4 2.0 Good Performance Habit
## 1531 3.18 7.5 4.3 Good Performance Habit
## 1532 5.36 7.1 6.6 Reduce Stress
## 1533 4.73 8.3 3.4 Good Performance Habit
## 1534 6.26 6.2 8.1 Reduce Stress
## 1535 1.96 7.6 6.7 Increase Study Time
## 1536 7.15 7.6 6.1 Reduce Stress
## 1537 4.19 5.4 2.2 Improve Sleep
## 1538 6.29 6.2 4.4 Good Performance Habit
## 1539 3.56 6.0 6.2 Reduce Stress
## 1540 2.40 6.4 3.2 Increase Study Time
## 1541 3.87 6.8 6.6 Reduce Stress
## 1542 3.09 6.0 3.7 Good Performance Habit
## 1543 4.25 6.7 5.8 Reduce Screen Time
## 1544 6.30 5.8 4.2 Improve Sleep
## 1545 7.16 6.1 7.8 Reduce Stress
## 1546 5.41 7.8 2.5 Good Performance Habit
## 1547 3.92 6.9 5.6 Good Performance Habit
## 1548 4.10 6.8 3.6 Good Performance Habit
## 1549 6.18 6.1 5.5 Good Performance Habit
## 1550 7.27 4.8 6.2 Improve Sleep
## 1551 4.35 5.1 1.1 Improve Sleep
## 1552 4.75 7.5 6.3 Reduce Stress
## 1553 3.50 9.9 7.2 Reduce Stress
## 1554 5.41 8.7 5.5 Reduce Screen Time
## 1555 6.91 6.5 3.6 Good Performance Habit
## 1556 1.10 6.9 6.1 Increase Study Time
## 1557 5.51 6.8 5.7 Good Performance Habit
## 1558 3.90 7.0 6.1 Reduce Stress
## 1559 0.34 7.0 5.5 Increase Study Time
## 1560 5.63 5.9 3.1 Improve Sleep
## 1561 4.82 7.6 5.6 Good Performance Habit
## 1562 5.74 9.7 1.0 Good Performance Habit
## 1563 2.27 5.8 5.0 Increase Study Time
## 1564 9.27 6.4 4.5 Good Performance Habit
## 1565 5.22 7.5 3.6 Good Performance Habit
## 1566 4.31 5.8 5.0 Improve Sleep
## 1567 8.05 7.1 3.8 Reduce Screen Time
## 1568 6.30 6.4 3.4 Reduce Screen Time
## 1569 6.67 5.1 3.1 Improve Sleep
## 1570 7.33 8.9 2.5 Good Performance Habit
## 1571 0.86 4.7 1.8 Increase Study Time
## 1572 8.34 7.7 5.4 Good Performance Habit
## 1573 4.31 7.3 3.1 Good Performance Habit
## 1574 5.57 7.4 7.8 Reduce Stress
## 1575 6.85 7.2 5.1 Good Performance Habit
## 1576 3.58 8.9 4.3 Good Performance Habit
## 1577 5.64 8.1 4.7 Good Performance Habit
## 1578 6.53 6.8 4.8 Good Performance Habit
## 1579 4.92 7.4 4.0 Reduce Screen Time
## 1580 5.99 8.4 3.1 Reduce Screen Time
## 1581 1.79 9.2 4.1 Increase Study Time
## 1582 2.62 5.9 8.1 Increase Study Time
## 1583 2.70 6.9 6.6 Increase Study Time
## 1584 5.74 5.4 6.4 Improve Sleep
## 1585 12.00 6.5 7.9 Reduce Stress
## 1586 5.53 7.1 7.1 Reduce Stress
## 1587 4.70 5.9 3.5 Improve Sleep
## 1588 4.87 6.8 7.1 Reduce Stress
## 1589 6.97 8.2 5.6 Good Performance Habit
## 1590 6.43 6.7 4.2 Good Performance Habit
## 1591 2.71 6.6 8.1 Increase Study Time
## 1592 7.03 4.9 5.2 Improve Sleep
## 1593 4.95 7.0 1.7 Reduce Screen Time
## 1594 6.64 6.4 6.1 Reduce Stress
## 1595 1.00 8.1 2.0 Increase Study Time
## 1596 1.89 5.5 3.4 Increase Study Time
## 1597 6.19 7.3 3.4 Reduce Screen Time
## 1598 1.40 6.3 6.4 Increase Study Time
## 1599 5.78 8.0 7.3 Reduce Stress
## 1600 5.68 7.2 4.9 Good Performance Habit
## 1601 5.29 5.4 1.9 Improve Sleep
## 1602 5.71 6.0 4.0 Good Performance Habit
## 1603 5.53 9.3 3.3 Good Performance Habit
## 1604 5.89 8.1 4.8 Good Performance Habit
## 1605 4.19 7.3 4.5 Good Performance Habit
## 1606 4.96 6.7 6.1 Reduce Stress
## 1607 10.86 6.7 6.5 Reduce Stress
## 1608 7.27 6.3 5.6 Good Performance Habit
## 1609 6.22 6.3 5.2 Good Performance Habit
## 1610 5.78 6.9 1.8 Good Performance Habit
## 1611 3.54 7.4 7.9 Reduce Stress
## 1612 5.45 4.9 3.5 Improve Sleep
## 1613 4.51 5.0 2.2 Improve Sleep
## 1614 6.89 7.0 3.4 Good Performance Habit
## 1615 3.17 6.5 1.0 Reduce Screen Time
## 1616 0.27 6.2 6.4 Increase Study Time
## 1617 3.88 8.3 4.3 Good Performance Habit
## 1618 6.39 7.6 7.4 Reduce Stress
## 1619 9.92 6.2 7.3 Reduce Stress
## 1620 7.05 5.6 8.4 Improve Sleep
## 1621 3.04 7.3 2.6 Good Performance Habit
## 1622 4.56 7.6 5.4 Reduce Screen Time
## 1623 3.10 4.0 6.2 Improve Sleep
## 1624 4.63 7.5 4.5 Good Performance Habit
## 1625 3.21 9.1 6.1 Reduce Stress
## 1626 1.71 7.5 5.4 Increase Study Time
## 1627 5.89 8.1 3.7 Good Performance Habit
## 1628 5.39 6.0 5.0 Reduce Screen Time
## 1629 4.66 7.3 5.2 Good Performance Habit
## 1630 5.69 7.6 1.0 Good Performance Habit
## 1631 9.07 8.9 5.6 Good Performance Habit
## 1632 5.23 6.5 2.7 Reduce Screen Time
## 1633 4.24 6.8 3.1 Good Performance Habit
## 1634 6.73 9.1 5.3 Good Performance Habit
## 1635 1.72 6.2 4.9 Increase Study Time
## 1636 6.51 7.3 7.4 Reduce Stress
## 1637 3.45 7.0 5.5 Good Performance Habit
## 1638 3.37 5.6 1.2 Improve Sleep
## 1639 5.22 7.6 4.3 Good Performance Habit
## 1640 8.34 6.7 5.6 Good Performance Habit
## 1641 3.51 6.7 2.8 Reduce Screen Time
## 1642 6.90 8.9 6.6 Reduce Stress
## 1643 5.76 4.1 4.3 Improve Sleep
## 1644 2.22 7.3 5.7 Increase Study Time
## 1645 6.83 6.9 2.7 Good Performance Habit
## 1646 3.35 7.3 4.8 Good Performance Habit
## 1647 2.06 6.7 4.9 Increase Study Time
## 1648 3.42 6.2 6.1 Reduce Stress
## 1649 3.55 7.0 8.2 Reduce Stress
## 1650 6.18 7.5 1.9 Good Performance Habit
## 1651 3.54 7.8 7.3 Reduce Stress
## 1652 7.99 6.4 5.8 Reduce Screen Time
## 1653 5.44 7.6 7.7 Reduce Stress
## 1654 3.56 6.8 6.7 Reduce Stress
## 1655 3.33 6.2 6.2 Reduce Stress
## 1656 5.46 7.8 7.3 Reduce Stress
## 1657 0.94 7.4 4.0 Increase Study Time
## 1658 0.65 7.9 1.4 Increase Study Time
## 1659 3.23 6.8 3.3 Good Performance Habit
## 1660 6.26 5.3 3.8 Improve Sleep
## 1661 5.36 8.1 6.8 Reduce Stress
## 1662 5.04 6.9 3.8 Reduce Screen Time
## 1663 4.57 6.0 3.2 Good Performance Habit
## 1664 0.64 5.6 6.1 Increase Study Time
## 1665 4.35 7.8 5.6 Reduce Screen Time
## 1666 1.45 7.3 5.3 Increase Study Time
## 1667 6.67 8.1 5.3 Reduce Screen Time
## 1668 4.98 7.1 3.8 Good Performance Habit
## 1669 4.82 6.1 8.0 Reduce Stress
## 1670 5.80 6.4 2.8 Good Performance Habit
## 1671 5.65 7.5 7.7 Reduce Stress
## 1672 5.46 5.8 2.4 Improve Sleep
## 1673 5.70 6.8 6.2 Reduce Stress
## 1674 3.82 6.4 3.5 Good Performance Habit
## 1675 2.33 6.5 3.5 Increase Study Time
## 1676 5.68 10.0 3.6 Good Performance Habit
## 1677 7.89 4.6 4.1 Improve Sleep
## 1678 7.02 7.3 8.4 Reduce Stress
## 1679 4.57 5.7 2.7 Improve Sleep
## 1680 6.22 9.5 4.9 Good Performance Habit
## 1681 4.12 6.6 6.4 Reduce Stress
## 1682 5.77 6.8 5.3 Good Performance Habit
## 1683 3.78 7.5 1.6 Good Performance Habit
## 1684 5.28 7.7 3.5 Good Performance Habit
## 1685 9.01 6.8 7.6 Reduce Stress
## 1686 6.54 8.5 1.3 Reduce Screen Time
## 1687 8.00 7.0 2.9 Good Performance Habit
## 1688 3.45 8.3 3.3 Reduce Screen Time
## 1689 3.63 6.6 7.8 Reduce Stress
## 1690 4.92 5.9 5.7 Improve Sleep
## 1691 6.11 6.4 5.6 Good Performance Habit
## 1692 4.58 6.0 4.9 Good Performance Habit
## 1693 7.03 5.1 2.7 Improve Sleep
## 1694 3.90 6.1 6.5 Reduce Stress
## 1695 7.72 5.6 5.3 Improve Sleep
## 1696 6.94 7.7 3.4 Good Performance Habit
## 1697 2.77 8.8 6.9 Increase Study Time
## 1698 6.17 5.7 3.8 Improve Sleep
## 1699 4.55 7.1 2.2 Good Performance Habit
## 1700 7.04 5.9 5.9 Improve Sleep
## 1701 3.92 8.1 4.0 Good Performance Habit
## 1702 5.62 8.6 3.8 Good Performance Habit
## 1703 6.09 6.3 6.3 Reduce Stress
## 1704 1.21 7.8 2.9 Increase Study Time
## 1705 1.24 4.9 3.6 Increase Study Time
## 1706 5.26 7.4 7.6 Reduce Stress
## 1707 4.75 8.0 7.6 Reduce Stress
## 1708 7.03 7.3 9.1 Reduce Stress
## 1709 5.45 7.8 7.9 Reduce Stress
## 1710 2.46 8.4 3.4 Increase Study Time
## 1711 5.66 9.9 4.1 Good Performance Habit
## 1712 3.50 7.2 5.2 Good Performance Habit
## 1713 4.54 7.0 7.3 Reduce Stress
## 1714 3.98 7.9 4.5 Good Performance Habit
## 1715 5.70 6.1 6.0 Reduce Screen Time
## 1716 2.16 8.1 9.6 Increase Study Time
## 1717 2.76 5.9 4.6 Increase Study Time
## 1718 0.55 7.2 3.7 Increase Study Time
## 1719 9.29 6.0 4.3 Good Performance Habit
## 1720 3.00 5.6 3.7 Improve Sleep
## 1721 3.27 7.1 6.2 Reduce Stress
## 1722 2.69 5.9 1.2 Increase Study Time
## 1723 3.71 5.6 7.8 Improve Sleep
## 1724 4.12 6.7 3.3 Reduce Screen Time
## 1725 6.23 5.9 6.1 Improve Sleep
## 1726 5.35 7.3 5.0 Good Performance Habit
## 1727 5.66 7.6 5.9 Reduce Screen Time
## 1728 3.82 7.5 3.4 Good Performance Habit
## 1729 4.85 9.2 8.6 Reduce Stress
## 1730 7.44 6.9 6.2 Reduce Stress
## 1731 4.95 6.6 5.8 Good Performance Habit
## 1732 5.61 7.3 3.9 Good Performance Habit
## 1733 0.94 6.4 6.1 Increase Study Time
## 1734 6.03 5.4 6.0 Improve Sleep
## 1735 5.52 7.6 1.6 Good Performance Habit
## 1736 7.58 6.0 4.2 Good Performance Habit
## 1737 0.52 6.0 4.7 Increase Study Time
## 1738 5.04 6.5 5.5 Good Performance Habit
## 1739 4.74 7.0 5.2 Reduce Screen Time
## 1740 5.15 6.4 6.9 Reduce Stress
## 1741 3.72 4.3 10.0 Improve Sleep
## 1742 5.40 7.0 8.6 Reduce Stress
## 1743 6.38 7.3 5.0 Reduce Screen Time
## 1744 5.06 7.4 7.1 Reduce Stress
## 1745 4.38 9.0 6.3 Reduce Stress
## 1746 4.54 5.8 5.5 Improve Sleep
## 1747 4.19 9.2 5.4 Reduce Screen Time
## 1748 5.04 7.4 2.0 Reduce Screen Time
## 1749 3.53 6.2 6.5 Reduce Stress
## 1750 0.98 9.1 8.2 Increase Study Time
## 1751 7.67 6.7 6.7 Reduce Stress
## 1752 1.44 8.2 4.0 Increase Study Time
## 1753 4.72 5.7 6.5 Improve Sleep
## 1754 2.34 8.3 2.3 Increase Study Time
## 1755 4.38 8.1 3.7 Good Performance Habit
## 1756 3.02 6.7 4.6 Good Performance Habit
## 1757 4.86 8.8 5.4 Good Performance Habit
## 1758 3.26 5.4 1.5 Improve Sleep
## 1759 2.35 9.7 8.5 Increase Study Time
## 1760 5.56 5.3 1.1 Improve Sleep
## 1761 7.61 7.4 4.0 Reduce Screen Time
## 1762 5.63 7.0 7.8 Reduce Stress
## 1763 5.15 3.2 5.6 Improve Sleep
## 1764 2.83 7.3 6.4 Increase Study Time
## 1765 4.76 6.5 6.3 Reduce Stress
## 1766 5.82 5.7 9.4 Improve Sleep
## 1767 3.63 6.1 3.4 Good Performance Habit
## 1768 6.73 5.1 4.7 Improve Sleep
## 1769 4.84 8.2 4.7 Good Performance Habit
## 1770 5.63 5.7 1.7 Improve Sleep
## 1771 3.93 6.5 7.4 Reduce Stress
## 1772 3.94 8.6 7.7 Reduce Stress
## 1773 5.36 9.1 6.6 Reduce Stress
## 1774 5.69 5.1 1.6 Improve Sleep
## 1775 5.61 7.4 5.8 Good Performance Habit
## 1776 2.88 8.6 7.3 Increase Study Time
## 1777 3.44 8.3 3.5 Good Performance Habit
## 1778 4.87 5.5 5.9 Improve Sleep
## 1779 1.20 6.4 6.1 Increase Study Time
## 1780 7.00 7.3 5.8 Reduce Screen Time
## 1781 5.54 8.1 7.0 Reduce Stress
## 1782 4.99 7.9 4.3 Good Performance Habit
## 1783 3.48 5.4 4.3 Improve Sleep
## 1784 6.54 7.8 4.9 Good Performance Habit
## 1785 4.36 8.3 1.9 Good Performance Habit
## 1786 8.70 8.8 5.3 Good Performance Habit
## 1787 5.69 7.6 5.4 Good Performance Habit
## 1788 1.92 5.9 3.6 Increase Study Time
## 1789 6.35 7.4 4.6 Good Performance Habit
## 1790 3.84 7.4 4.5 Good Performance Habit
## 1791 3.86 5.5 5.1 Improve Sleep
## 1792 4.41 5.4 5.5 Improve Sleep
## 1793 4.64 7.7 3.7 Good Performance Habit
## 1794 5.40 8.6 8.2 Reduce Stress
## 1795 6.42 7.1 5.7 Good Performance Habit
## 1796 5.80 7.2 5.6 Good Performance Habit
## 1797 3.44 6.2 4.0 Reduce Screen Time
## 1798 2.19 6.6 5.1 Increase Study Time
## 1799 3.28 7.7 5.5 Good Performance Habit
## 1800 5.61 8.0 6.6 Reduce Stress
## 1801 6.62 6.9 3.3 Good Performance Habit
## 1802 8.49 4.3 8.0 Improve Sleep
## 1803 2.19 7.1 3.3 Increase Study Time
## 1804 5.04 5.3 8.6 Improve Sleep
## 1805 4.43 4.7 3.3 Improve Sleep
## 1806 4.08 6.2 3.9 Good Performance Habit
## 1807 5.16 8.8 3.8 Reduce Screen Time
## 1808 4.39 5.2 6.2 Improve Sleep
## 1809 4.35 7.1 5.6 Good Performance Habit
## 1810 3.59 7.3 7.9 Reduce Stress
## 1811 5.67 8.6 5.0 Reduce Screen Time
## 1812 6.99 6.2 7.4 Reduce Stress
## 1813 8.15 7.0 3.9 Good Performance Habit
## 1814 3.83 5.7 5.2 Improve Sleep
## 1815 2.77 6.1 2.9 Increase Study Time
## 1816 4.36 7.6 10.0 Reduce Stress
## 1817 3.21 8.2 5.1 Good Performance Habit
## 1818 6.94 4.6 4.0 Improve Sleep
## 1819 3.24 4.5 4.6 Improve Sleep
## 1820 5.03 6.2 5.1 Reduce Screen Time
## 1821 2.19 8.2 3.8 Increase Study Time
## 1822 4.18 5.9 3.8 Improve Sleep
## 1823 5.26 8.2 5.1 Good Performance Habit
## 1824 7.94 6.7 1.6 Good Performance Habit
## 1825 3.50 6.2 2.2 Good Performance Habit
## 1826 5.62 7.7 6.7 Reduce Stress
## 1827 0.72 7.0 5.8 Increase Study Time
## 1828 2.47 7.3 5.2 Increase Study Time
## 1829 3.25 4.4 3.0 Improve Sleep
## 1830 3.88 7.1 6.4 Reduce Stress
## 1831 5.74 7.1 6.8 Reduce Stress
## 1832 6.14 10.0 6.2 Reduce Stress
## 1833 1.66 6.8 8.0 Increase Study Time
## 1834 5.94 7.1 5.4 Good Performance Habit
## 1835 2.65 8.3 6.0 Increase Study Time
## 1836 8.55 8.3 5.2 Good Performance Habit
## 1837 5.50 7.7 4.0 Good Performance Habit
## 1838 5.18 8.4 5.2 Good Performance Habit
## 1839 4.52 4.6 6.6 Improve Sleep
## 1840 4.81 6.7 3.9 Good Performance Habit
## 1841 4.88 6.3 4.1 Good Performance Habit
## 1842 3.49 7.1 6.5 Reduce Stress
## 1843 6.37 4.9 4.8 Improve Sleep
## 1844 5.41 7.8 6.3 Reduce Stress
## 1845 6.37 6.5 3.6 Good Performance Habit
## 1846 4.75 7.7 5.0 Good Performance Habit
## 1847 6.23 7.0 4.4 Good Performance Habit
## 1848 3.36 7.5 4.8 Good Performance Habit
## 1849 12.00 8.3 3.6 Good Performance Habit
## 1850 3.45 6.1 7.7 Reduce Stress
## 1851 3.98 5.1 5.4 Improve Sleep
## 1852 6.80 6.9 4.3 Good Performance Habit
## 1853 7.34 6.1 7.7 Reduce Stress
## 1854 3.28 6.8 3.4 Good Performance Habit
## 1855 1.55 6.2 4.0 Increase Study Time
## 1856 2.08 4.3 6.5 Increase Study Time
## 1857 2.88 5.7 5.7 Increase Study Time
## 1858 3.30 6.0 5.6 Good Performance Habit
## 1859 4.54 7.3 6.0 Good Performance Habit
## 1860 6.93 7.8 5.5 Good Performance Habit
## 1861 7.03 8.6 3.5 Good Performance Habit
## 1862 3.65 7.3 7.9 Reduce Stress
## 1863 5.95 9.3 7.8 Reduce Stress
## 1864 6.63 9.0 7.0 Reduce Stress
## 1865 7.68 6.5 3.6 Good Performance Habit
## 1866 4.55 6.6 4.0 Good Performance Habit
## 1867 3.38 5.7 7.5 Improve Sleep
## 1868 6.37 6.9 3.9 Good Performance Habit
## 1869 7.90 6.6 4.4 Reduce Screen Time
## 1870 3.82 7.6 4.8 Good Performance Habit
## 1871 8.76 9.2 4.3 Good Performance Habit
## 1872 8.30 9.7 5.3 Good Performance Habit
## 1873 4.34 7.8 1.0 Good Performance Habit
## 1874 1.73 5.9 3.6 Increase Study Time
## 1875 3.67 7.4 1.2 Good Performance Habit
## 1876 4.16 7.6 4.8 Good Performance Habit
## 1877 5.93 6.1 5.9 Good Performance Habit
## 1878 1.52 6.8 3.6 Increase Study Time
## 1879 9.73 8.0 5.5 Reduce Screen Time
## 1880 9.55 6.4 5.9 Reduce Screen Time
## 1881 3.42 5.7 6.4 Improve Sleep
## 1882 1.14 6.7 5.2 Increase Study Time
## 1883 4.53 7.3 5.6 Reduce Screen Time
## 1884 5.71 8.6 7.9 Reduce Stress
## 1885 7.56 6.1 5.0 Reduce Screen Time
## 1886 6.29 7.9 6.8 Reduce Stress
## 1887 4.46 7.1 4.5 Reduce Screen Time
## 1888 0.93 7.6 3.7 Increase Study Time
## 1889 5.88 7.4 4.6 Good Performance Habit
## 1890 6.55 6.0 9.1 Reduce Stress
## 1891 4.24 4.0 1.0 Improve Sleep
## 1892 5.41 5.8 5.8 Improve Sleep
## 1893 5.27 7.4 3.2 Reduce Screen Time
## 1894 4.37 7.1 2.9 Good Performance Habit
## 1895 2.55 7.4 2.5 Increase Study Time
## 1896 5.54 6.8 5.3 Good Performance Habit
## 1897 2.02 7.1 5.6 Increase Study Time
## 1898 7.66 6.5 3.8 Reduce Screen Time
## 1899 3.06 8.6 7.9 Reduce Stress
## 1900 5.84 5.3 1.6 Improve Sleep
## 1901 3.39 6.1 6.8 Reduce Stress
## 1902 5.61 5.9 3.9 Improve Sleep
## 1903 4.43 6.8 4.7 Reduce Screen Time
## 1904 5.92 7.8 5.7 Reduce Screen Time
## 1905 3.27 9.1 5.0 Good Performance Habit
## 1906 1.59 8.2 4.2 Increase Study Time
## 1907 4.29 8.2 1.6 Reduce Screen Time
## 1908 4.15 8.7 4.4 Good Performance Habit
## 1909 1.84 8.3 4.9 Increase Study Time
## 1910 3.47 8.2 1.0 Good Performance Habit
## 1911 1.50 5.9 5.6 Increase Study Time
## 1912 5.08 6.3 7.7 Reduce Stress
## 1913 4.10 7.8 2.1 Reduce Screen Time
## 1914 4.88 7.2 7.4 Reduce Stress
## 1915 10.06 6.6 3.7 Good Performance Habit
## 1916 5.17 8.4 5.1 Good Performance Habit
## 1917 5.60 6.5 3.5 Good Performance Habit
## 1918 6.11 7.5 1.2 Reduce Screen Time
## 1919 4.57 7.0 1.5 Good Performance Habit
## 1920 3.67 5.8 8.2 Improve Sleep
## 1921 6.61 9.1 3.3 Good Performance Habit
## 1922 6.91 5.0 9.0 Improve Sleep
## 1923 1.47 5.5 3.3 Increase Study Time
## 1924 4.53 6.5 4.4 Good Performance Habit
## 1925 4.17 8.6 6.3 Reduce Stress
## 1926 3.72 8.6 2.8 Good Performance Habit
## 1927 7.33 6.2 6.9 Reduce Stress
## 1928 3.78 7.8 6.9 Reduce Stress
## 1929 6.57 6.7 7.5 Reduce Stress
## 1930 3.76 5.8 5.0 Improve Sleep
## 1931 4.03 7.4 5.8 Reduce Screen Time
## 1932 6.30 7.0 3.1 Good Performance Habit
## 1933 3.37 6.3 8.2 Reduce Stress
## 1934 4.52 7.9 7.0 Reduce Stress
## 1935 2.64 8.1 4.1 Increase Study Time
## 1936 3.07 5.8 8.5 Improve Sleep
## 1937 6.29 9.0 3.6 Good Performance Habit
## 1938 6.01 7.7 6.6 Reduce Stress
## 1939 2.56 6.8 6.9 Increase Study Time
## 1940 2.48 8.9 6.6 Increase Study Time
## 1941 9.94 8.0 2.5 Good Performance Habit
## 1942 3.56 8.1 2.4 Good Performance Habit
## 1943 3.10 8.0 5.0 Reduce Screen Time
## 1944 5.87 6.7 5.5 Reduce Screen Time
## 1945 3.29 7.7 6.5 Reduce Stress
## 1946 4.11 6.9 4.7 Good Performance Habit
## 1947 6.63 6.1 1.0 Good Performance Habit
## 1948 6.84 5.9 3.2 Improve Sleep
## 1949 4.45 7.6 5.2 Good Performance Habit
## 1950 7.52 8.2 1.1 Good Performance Habit
## 1951 4.55 5.3 4.5 Improve Sleep
## 1952 4.36 9.0 10.0 Reduce Stress
## 1953 4.83 7.9 4.8 Reduce Screen Time
## 1954 4.23 8.2 3.5 Good Performance Habit
## 1955 5.89 6.7 6.4 Reduce Stress
## 1956 5.40 7.8 2.9 Good Performance Habit
## 1957 3.29 7.9 4.3 Reduce Screen Time
## 1958 5.20 5.4 5.1 Improve Sleep
## 1959 3.76 8.2 1.1 Reduce Screen Time
## 1960 3.68 9.7 6.2 Reduce Stress
## 1961 4.56 6.1 5.0 Reduce Screen Time
## 1962 6.88 4.9 5.0 Improve Sleep
## 1963 5.39 6.1 4.1 Good Performance Habit
## 1964 7.38 8.1 6.4 Reduce Stress
## 1965 7.96 7.6 4.8 Reduce Screen Time
## 1966 4.77 5.9 2.6 Improve Sleep
## 1967 3.63 6.3 5.6 Reduce Screen Time
## 1968 3.27 4.9 5.2 Improve Sleep
## 1969 5.40 7.2 2.8 Good Performance Habit
## 1970 6.57 4.5 4.3 Improve Sleep
## 1971 8.01 6.8 8.2 Reduce Stress
## 1972 2.23 5.4 3.0 Increase Study Time
## 1973 7.20 6.8 5.1 Good Performance Habit
## 1974 8.10 7.8 5.2 Reduce Screen Time
## 1975 4.56 6.8 2.8 Reduce Screen Time
## 1976 5.70 7.3 2.1 Good Performance Habit
## 1977 7.17 7.3 6.2 Reduce Stress
## 1978 8.03 6.7 5.0 Reduce Screen Time
## 1979 8.49 6.1 3.8 Good Performance Habit
## 1980 5.07 4.9 4.1 Improve Sleep
## 1981 7.53 7.4 3.2 Good Performance Habit
## 1982 2.64 8.7 9.6 Increase Study Time
## 1983 0.66 9.5 4.9 Increase Study Time
## 1984 4.16 4.8 3.2 Improve Sleep
## 1985 5.71 5.9 3.7 Improve Sleep
## 1986 2.03 7.7 5.7 Increase Study Time
## 1987 4.72 9.3 2.4 Good Performance Habit
## 1988 5.36 5.7 3.3 Improve Sleep
## 1989 4.96 7.2 4.3 Good Performance Habit
## 1990 5.54 7.3 2.6 Good Performance Habit
## 1991 7.22 6.3 3.8 Good Performance Habit
## 1992 4.49 6.8 6.9 Reduce Stress
## 1993 4.09 6.5 4.8 Good Performance Habit
## 1994 6.09 5.2 4.6 Improve Sleep
## 1995 4.61 9.2 4.6 Good Performance Habit
## 1996 7.79 7.3 7.9 Reduce Stress
## 1997 8.96 6.5 2.8 Good Performance Habit
## 1998 5.71 8.4 2.7 Good Performance Habit
## 1999 4.49 6.7 3.8 Good Performance Habit
## 2000 4.58 8.4 2.5 Good Performance Habit
## 2001 4.85 6.2 6.6 Reduce Stress
## 2002 6.02 8.4 6.6 Reduce Stress
## 2003 3.41 7.8 3.6 Good Performance Habit
## 2004 6.04 6.2 5.4 Good Performance Habit
## 2005 4.39 8.0 5.7 Reduce Screen Time
## 2006 6.99 8.3 5.0 Good Performance Habit
## 2007 7.60 7.1 1.6 Reduce Screen Time
## 2008 8.35 5.7 8.1 Improve Sleep
## 2009 4.57 5.6 3.4 Improve Sleep
## 2010 2.18 6.8 2.6 Increase Study Time
## 2011 1.51 7.3 1.0 Increase Study Time
## 2012 4.30 4.0 8.1 Improve Sleep
## 2013 2.05 7.9 5.1 Increase Study Time
## 2014 1.59 7.6 4.0 Increase Study Time
## 2015 4.18 9.0 6.1 Reduce Stress
## 2016 2.92 6.7 2.7 Increase Study Time
## 2017 6.27 6.6 6.2 Reduce Stress
## 2018 8.77 7.5 5.9 Good Performance Habit
## 2019 4.44 5.4 4.0 Improve Sleep
## 2020 5.52 7.1 3.6 Good Performance Habit
## 2021 1.74 4.9 3.5 Increase Study Time
## 2022 5.26 6.0 3.6 Good Performance Habit
## 2023 3.50 7.2 7.4 Reduce Stress
## 2024 2.70 7.0 7.5 Increase Study Time
## 2025 1.18 5.7 6.5 Increase Study Time
## 2026 8.10 7.5 2.7 Good Performance Habit
## 2027 1.68 7.0 4.8 Increase Study Time
## 2028 2.49 7.8 3.0 Increase Study Time
## 2029 4.92 6.1 4.7 Good Performance Habit
## 2030 5.48 6.6 5.2 Good Performance Habit
## 2031 5.49 7.5 7.3 Reduce Stress
## 2032 5.12 5.6 6.6 Improve Sleep
## 2033 3.12 7.4 6.1 Reduce Stress
## 2034 6.45 5.9 4.3 Improve Sleep
## 2035 5.30 9.0 8.7 Reduce Stress
## 2036 2.01 6.0 4.0 Increase Study Time
## 2037 8.12 7.7 5.5 Reduce Screen Time
## 2038 4.23 4.5 5.3 Improve Sleep
## 2039 6.81 6.6 3.6 Good Performance Habit
## 2040 2.01 7.3 5.9 Increase Study Time
## 2041 2.54 6.7 5.9 Increase Study Time
## 2042 3.77 6.3 3.1 Good Performance Habit
## 2043 3.54 5.7 6.2 Improve Sleep
## 2044 6.95 6.9 8.2 Reduce Stress
## 2045 1.68 6.6 5.8 Increase Study Time
## 2046 5.25 6.9 4.0 Good Performance Habit
## 2047 2.90 6.1 8.7 Increase Study Time
## 2048 5.96 5.4 6.5 Improve Sleep
## 2049 5.34 8.1 6.7 Reduce Stress
## 2050 3.82 8.6 6.3 Reduce Stress
## 2051 9.37 8.3 4.8 Good Performance Habit
## 2052 4.84 7.4 2.6 Good Performance Habit
## 2053 7.12 7.3 4.1 Good Performance Habit
## 2054 2.27 6.8 4.3 Increase Study Time
## 2055 4.68 7.1 4.9 Reduce Screen Time
## 2056 5.11 7.0 5.0 Good Performance Habit
## 2057 5.21 5.8 6.2 Improve Sleep
## 2058 4.24 5.5 5.3 Improve Sleep
## 2059 3.28 7.3 3.1 Good Performance Habit
## 2060 1.33 5.6 3.6 Increase Study Time
## 2061 3.80 8.8 5.0 Good Performance Habit
## 2062 3.10 6.6 2.9 Good Performance Habit
## 2063 4.43 7.8 2.0 Good Performance Habit
## 2064 6.66 7.2 3.2 Reduce Screen Time
## 2065 9.38 6.7 3.8 Good Performance Habit
## 2066 6.01 7.2 9.0 Reduce Stress
## 2067 6.98 7.0 3.2 Good Performance Habit
## 2068 6.20 7.8 4.6 Reduce Screen Time
## 2069 6.40 7.6 5.1 Good Performance Habit
## 2070 6.13 8.7 6.2 Reduce Stress
## 2071 4.43 7.0 5.9 Reduce Screen Time
## 2072 4.30 7.7 6.0 Good Performance Habit
## 2073 5.62 6.1 4.9 Good Performance Habit
## 2074 8.56 8.5 5.5 Good Performance Habit
## 2075 6.53 6.7 3.3 Good Performance Habit
## 2076 8.18 7.1 8.9 Reduce Stress
## 2077 2.37 6.1 6.4 Increase Study Time
## 2078 5.50 5.6 3.4 Improve Sleep
## 2079 5.77 4.1 5.0 Improve Sleep
## 2080 6.01 10.0 5.1 Reduce Screen Time
## 2081 2.23 8.6 5.0 Increase Study Time
## 2082 1.29 6.0 4.5 Increase Study Time
## 2083 0.73 6.6 4.4 Increase Study Time
## 2084 4.18 5.1 2.0 Improve Sleep
## 2085 9.67 7.9 1.0 Good Performance Habit
## 2086 5.41 7.5 3.4 Good Performance Habit
## 2087 2.56 7.9 6.5 Increase Study Time
## 2088 5.66 6.2 4.8 Good Performance Habit
## 2089 4.38 7.7 6.6 Reduce Stress
## 2090 5.33 6.9 1.0 Reduce Screen Time
## 2091 4.08 5.3 4.6 Improve Sleep
## 2092 2.40 8.5 6.4 Increase Study Time
## 2093 3.92 6.3 3.2 Good Performance Habit
## 2094 6.42 7.8 3.5 Good Performance Habit
## 2095 5.60 7.9 4.0 Good Performance Habit
## 2096 7.44 8.1 4.4 Good Performance Habit
## 2097 2.85 8.0 4.9 Increase Study Time
## 2098 7.10 6.9 2.5 Good Performance Habit
## 2099 5.13 4.9 1.7 Improve Sleep
## 2100 5.39 7.5 5.2 Good Performance Habit
## 2101 7.51 10.0 3.6 Good Performance Habit
## 2102 4.76 6.6 4.3 Good Performance Habit
## 2103 5.53 7.9 8.2 Reduce Stress
## 2104 6.30 7.1 4.0 Reduce Screen Time
## 2105 6.32 6.6 3.6 Reduce Screen Time
## 2106 6.66 7.1 1.8 Good Performance Habit
## 2107 7.62 8.8 6.2 Reduce Stress
## 2108 6.10 8.1 4.4 Good Performance Habit
## 2109 4.16 7.1 1.0 Good Performance Habit
## 2110 9.94 7.4 3.4 Good Performance Habit
## 2111 4.99 4.3 5.4 Improve Sleep
## 2112 5.81 5.0 2.7 Improve Sleep
## 2113 3.57 4.1 8.9 Improve Sleep
## 2114 0.70 6.7 7.1 Increase Study Time
## 2115 3.51 8.6 4.3 Good Performance Habit
## 2116 5.20 8.4 5.0 Good Performance Habit
## 2117 6.13 6.3 5.0 Good Performance Habit
## 2118 5.12 7.6 4.0 Reduce Screen Time
## 2119 6.66 7.3 8.2 Reduce Stress
## 2120 7.05 8.8 6.0 Good Performance Habit
## 2121 7.05 5.1 2.3 Improve Sleep
## 2122 5.08 5.2 7.9 Improve Sleep
## 2123 5.24 7.0 3.5 Good Performance Habit
## 2124 4.65 6.2 5.4 Reduce Screen Time
## 2125 3.33 5.1 5.6 Improve Sleep
## 2126 7.93 6.7 7.2 Reduce Stress
## 2127 2.59 9.4 3.1 Increase Study Time
## 2128 4.93 7.3 4.0 Reduce Screen Time
## 2129 5.53 6.0 3.2 Reduce Screen Time
## 2130 0.80 8.2 4.2 Increase Study Time
## 2131 6.57 5.5 7.1 Improve Sleep
## 2132 4.38 7.0 1.0 Good Performance Habit
## 2133 5.53 6.6 3.7 Good Performance Habit
## 2134 4.42 7.4 3.7 Good Performance Habit
## 2135 2.01 7.0 4.8 Increase Study Time
## 2136 5.47 7.7 1.5 Good Performance Habit
## 2137 5.29 6.1 6.9 Reduce Stress
## 2138 7.08 7.1 5.5 Reduce Screen Time
## 2139 6.03 8.0 5.0 Reduce Screen Time
## 2140 1.72 5.8 8.3 Increase Study Time
## 2141 7.29 8.2 10.0 Reduce Stress
## 2142 6.68 7.3 4.9 Good Performance Habit
## 2143 6.62 5.3 3.8 Improve Sleep
## 2144 6.06 7.9 2.9 Good Performance Habit
## 2145 3.68 7.2 1.0 Good Performance Habit
## 2146 6.15 5.7 5.1 Improve Sleep
## 2147 4.36 7.5 6.5 Reduce Stress
## 2148 10.85 5.3 3.0 Improve Sleep
## 2149 4.61 5.8 5.0 Improve Sleep
## 2150 2.87 6.0 6.3 Increase Study Time
## 2151 4.41 7.5 2.6 Reduce Screen Time
## 2152 7.97 9.1 3.7 Good Performance Habit
## 2153 3.95 6.8 5.1 Good Performance Habit
## 2154 0.20 7.5 4.4 Increase Study Time
## 2155 8.02 7.3 5.8 Good Performance Habit
## 2156 5.74 7.5 7.1 Reduce Stress
## 2157 4.09 8.1 5.6 Good Performance Habit
## 2158 6.52 6.7 1.3 Good Performance Habit
## 2159 3.24 7.6 6.1 Reduce Stress
## 2160 2.74 7.7 4.0 Increase Study Time
## 2161 6.99 6.2 2.5 Good Performance Habit
## 2162 4.06 7.5 3.9 Good Performance Habit
## 2163 6.15 8.8 2.5 Good Performance Habit
## 2164 5.11 4.4 5.2 Improve Sleep
## 2165 6.75 6.3 2.8 Reduce Screen Time
## 2166 5.30 8.4 6.4 Reduce Stress
## 2167 0.99 7.9 8.2 Increase Study Time
## 2168 6.45 7.1 5.2 Good Performance Habit
## 2169 4.14 7.5 6.2 Reduce Stress
## 2170 6.85 6.1 7.7 Reduce Stress
## 2171 5.31 7.5 8.0 Reduce Stress
## 2172 7.93 7.3 2.9 Good Performance Habit
## 2173 4.46 7.5 5.3 Good Performance Habit
## 2174 0.97 6.3 6.0 Increase Study Time
## 2175 4.44 7.1 6.3 Reduce Stress
## 2176 6.11 4.9 4.7 Improve Sleep
## 2177 4.40 7.8 3.1 Good Performance Habit
## 2178 4.15 8.8 6.7 Reduce Stress
## 2179 8.03 5.6 2.1 Improve Sleep
## 2180 4.78 6.9 1.5 Good Performance Habit
## 2181 7.19 4.8 2.9 Improve Sleep
## 2182 5.38 7.9 3.9 Reduce Screen Time
## 2183 2.19 6.3 5.2 Increase Study Time
## 2184 3.20 6.9 5.3 Good Performance Habit
## 2185 4.45 6.0 6.1 Reduce Stress
## 2186 5.70 5.7 7.6 Improve Sleep
## 2187 3.46 7.6 7.1 Reduce Stress
## 2188 2.25 7.2 3.2 Increase Study Time
## 2189 3.05 8.0 5.3 Good Performance Habit
## 2190 4.04 7.8 4.8 Good Performance Habit
## 2191 3.31 5.9 2.5 Improve Sleep
## 2192 3.91 9.0 6.5 Reduce Stress
## 2193 8.80 4.5 3.9 Improve Sleep
## 2194 5.64 7.7 2.0 Reduce Screen Time
## 2195 3.44 7.8 5.6 Good Performance Habit
## 2196 5.06 8.7 5.9 Good Performance Habit
## 2197 8.23 5.3 5.8 Improve Sleep
## 2198 6.37 7.4 7.3 Reduce Stress
## 2199 4.87 5.5 3.4 Improve Sleep
## 2200 2.36 9.6 4.0 Increase Study Time
## 2201 1.68 4.2 3.6 Increase Study Time
## 2202 4.39 7.2 8.1 Reduce Stress
## 2203 4.86 7.6 4.7 Good Performance Habit
## 2204 1.82 6.1 4.6 Increase Study Time
## 2205 2.40 5.9 4.0 Increase Study Time
## 2206 4.99 10.0 6.7 Reduce Stress
## 2207 0.64 6.3 4.2 Increase Study Time
## 2208 1.62 6.5 4.0 Increase Study Time
## 2209 4.97 7.4 9.2 Reduce Stress
## 2210 6.19 6.9 5.1 Good Performance Habit
## 2211 5.71 4.9 5.5 Improve Sleep
## 2212 7.07 5.5 4.1 Improve Sleep
## 2213 8.23 6.0 2.5 Good Performance Habit
## 2214 6.87 6.4 5.0 Reduce Screen Time
## 2215 4.54 7.4 5.1 Good Performance Habit
## 2216 9.33 6.5 7.4 Reduce Stress
## 2217 8.44 6.7 5.1 Good Performance Habit
## 2218 6.96 7.6 7.1 Reduce Stress
## 2219 3.45 6.6 2.1 Good Performance Habit
## 2220 5.88 7.3 5.1 Good Performance Habit
## 2221 0.89 7.6 10.0 Increase Study Time
## 2222 4.42 6.8 3.4 Reduce Screen Time
## 2223 0.10 6.7 7.6 Increase Study Time
## 2224 4.24 8.3 5.8 Good Performance Habit
## 2225 7.14 8.0 4.9 Good Performance Habit
## 2226 5.13 10.0 6.9 Reduce Stress
## 2227 8.32 7.7 2.5 Good Performance Habit
## 2228 5.09 7.3 6.7 Reduce Stress
## 2229 5.30 8.0 6.5 Reduce Stress
## 2230 4.49 7.5 6.6 Reduce Stress
## 2231 6.16 8.1 6.2 Reduce Stress
## 2232 5.03 6.7 6.1 Reduce Stress
## 2233 7.50 6.1 1.9 Reduce Screen Time
## 2234 8.33 4.7 4.5 Improve Sleep
## 2235 5.85 8.2 7.0 Reduce Stress
## 2236 2.86 5.3 6.2 Increase Study Time
## 2237 6.23 8.8 3.9 Good Performance Habit
## 2238 7.82 6.1 4.4 Good Performance Habit
## 2239 6.41 5.7 5.3 Improve Sleep
## 2240 5.70 5.9 3.6 Improve Sleep
## 2241 6.99 6.3 5.2 Good Performance Habit
## 2242 7.75 7.7 4.9 Reduce Screen Time
## 2243 0.71 7.1 4.7 Increase Study Time
## 2244 8.15 6.3 7.0 Reduce Stress
## 2245 6.66 9.7 1.4 Reduce Screen Time
## 2246 6.08 4.6 4.0 Improve Sleep
## 2247 4.00 7.3 7.8 Reduce Stress
## 2248 5.57 7.6 5.1 Good Performance Habit
## 2249 6.33 7.8 5.8 Good Performance Habit
## 2250 2.15 9.4 5.4 Increase Study Time
## 2251 6.62 7.3 2.4 Good Performance Habit
## 2252 5.26 5.0 5.4 Improve Sleep
## 2253 8.06 8.7 5.1 Good Performance Habit
## 2254 6.47 6.0 4.9 Good Performance Habit
## 2255 4.77 5.9 5.2 Improve Sleep
## 2256 5.23 7.4 3.5 Reduce Screen Time
## 2257 6.40 6.0 8.4 Reduce Stress
## 2258 5.42 6.5 1.5 Reduce Screen Time
## 2259 6.22 7.5 1.2 Good Performance Habit
## 2260 3.69 5.6 5.1 Improve Sleep
## 2261 2.62 7.7 2.7 Increase Study Time
## 2262 3.98 5.4 8.0 Improve Sleep
## 2263 2.26 6.1 2.9 Increase Study Time
## 2264 3.57 4.9 6.7 Improve Sleep
## 2265 5.83 7.7 2.3 Reduce Screen Time
## 2266 1.85 8.2 3.4 Increase Study Time
## 2267 2.66 7.1 7.5 Increase Study Time
## 2268 6.59 7.0 7.7 Reduce Stress
## 2269 4.06 5.8 2.3 Improve Sleep
## 2270 5.10 9.3 1.5 Good Performance Habit
## 2271 2.65 6.4 7.7 Increase Study Time
## 2272 3.03 6.6 4.1 Good Performance Habit
## 2273 4.51 7.5 5.5 Good Performance Habit
## 2274 8.38 6.1 5.7 Good Performance Habit
## 2275 6.01 5.4 6.7 Improve Sleep
## 2276 1.77 9.5 5.4 Increase Study Time
## 2277 6.02 6.9 5.9 Good Performance Habit
## 2278 6.97 6.1 3.5 Good Performance Habit
## 2279 6.50 7.4 2.2 Reduce Screen Time
## 2280 2.67 5.7 2.7 Increase Study Time
## 2281 4.99 5.1 4.8 Improve Sleep
## 2282 9.37 4.0 6.6 Improve Sleep
## 2283 3.25 7.3 2.3 Good Performance Habit
## 2284 5.79 9.1 2.9 Good Performance Habit
## 2285 3.62 5.1 5.3 Improve Sleep
## 2286 2.58 7.4 5.1 Increase Study Time
## 2287 4.26 5.2 6.4 Improve Sleep
## 2288 7.18 8.6 4.4 Good Performance Habit
## 2289 7.44 7.0 6.0 Reduce Screen Time
## 2290 3.36 8.0 3.0 Reduce Screen Time
## 2291 4.17 6.4 1.2 Good Performance Habit
## 2292 3.34 6.0 9.1 Reduce Stress
## 2293 0.97 6.5 3.3 Increase Study Time
## 2294 6.33 7.8 4.0 Good Performance Habit
## 2295 8.24 7.0 7.8 Reduce Stress
## 2296 8.12 5.7 8.4 Improve Sleep
## 2297 4.19 9.1 7.4 Reduce Stress
## 2298 7.78 7.4 4.4 Good Performance Habit
## 2299 7.31 7.2 3.5 Good Performance Habit
## 2300 4.45 6.6 5.2 Good Performance Habit
## 2301 5.12 6.9 5.1 Good Performance Habit
## 2302 4.39 7.5 5.6 Good Performance Habit
## 2303 5.61 6.0 7.4 Reduce Stress
## 2304 8.76 10.0 4.8 Good Performance Habit
## 2305 3.28 6.7 3.3 Good Performance Habit
## 2306 2.75 5.6 3.8 Increase Study Time
## 2307 6.88 8.0 3.9 Good Performance Habit
## 2308 5.26 6.4 3.2 Good Performance Habit
## 2309 1.36 6.2 4.1 Increase Study Time
## 2310 3.12 5.1 7.7 Improve Sleep
## 2311 3.49 6.2 7.1 Reduce Stress
## 2312 3.92 6.9 6.7 Reduce Stress
## 2313 5.79 5.1 3.8 Improve Sleep
## 2314 7.13 7.0 2.7 Reduce Screen Time
## 2315 4.82 8.7 6.0 Good Performance Habit
## 2316 5.44 7.5 5.9 Reduce Screen Time
## 2317 3.66 6.8 4.1 Good Performance Habit
## 2318 7.19 5.7 4.1 Improve Sleep
## 2319 7.84 8.3 3.9 Good Performance Habit
## 2320 4.62 6.9 6.3 Reduce Stress
## 2321 3.67 9.1 3.4 Reduce Screen Time
## 2322 9.30 4.9 4.5 Improve Sleep
## 2323 7.01 6.6 1.0 Reduce Screen Time
## 2324 3.37 7.2 4.4 Good Performance Habit
## 2325 1.77 7.1 5.7 Increase Study Time
## 2326 4.57 7.5 4.2 Reduce Screen Time
## 2327 7.55 7.8 1.5 Good Performance Habit
## 2328 4.07 4.3 4.9 Improve Sleep
## 2329 4.67 8.9 4.3 Good Performance Habit
## 2330 4.17 7.8 7.7 Reduce Stress
## 2331 6.46 8.9 4.7 Good Performance Habit
## 2332 7.95 7.5 7.9 Reduce Stress
## 2333 2.64 7.2 4.5 Increase Study Time
## 2334 4.59 3.7 3.8 Improve Sleep
## 2335 4.76 7.4 4.4 Good Performance Habit
## 2336 3.92 5.4 5.4 Improve Sleep
## 2337 2.77 8.6 5.0 Increase Study Time
## 2338 6.81 6.0 4.0 Good Performance Habit
## 2339 5.48 7.5 3.2 Reduce Screen Time
## 2340 6.61 7.8 5.4 Good Performance Habit
## 2341 8.20 6.9 5.5 Good Performance Habit
## 2342 4.44 6.1 4.8 Good Performance Habit
## 2343 6.25 10.0 4.3 Good Performance Habit
## 2344 4.36 5.3 4.2 Improve Sleep
## 2345 4.99 6.3 3.1 Good Performance Habit
## 2346 5.84 5.7 5.3 Improve Sleep
## 2347 4.85 8.5 6.4 Reduce Stress
## 2348 2.15 7.9 7.2 Increase Study Time
## 2349 8.19 6.7 4.3 Good Performance Habit
## 2350 5.48 6.1 3.3 Good Performance Habit
## 2351 2.88 6.6 2.9 Increase Study Time
## 2352 0.75 8.0 5.9 Increase Study Time
## 2353 5.13 8.8 4.3 Good Performance Habit
## 2354 6.48 6.5 5.3 Good Performance Habit
## 2355 7.20 6.9 4.4 Reduce Screen Time
## 2356 7.41 9.7 3.3 Good Performance Habit
## 2357 4.41 9.0 3.5 Good Performance Habit
## 2358 6.47 7.4 1.1 Good Performance Habit
## 2359 2.09 6.7 6.3 Increase Study Time
## 2360 5.48 7.6 5.0 Good Performance Habit
## 2361 7.01 6.5 4.1 Good Performance Habit
## 2362 3.96 7.4 6.2 Reduce Stress
## 2363 4.86 7.6 4.6 Good Performance Habit
## 2364 5.39 7.8 2.6 Reduce Screen Time
## 2365 5.45 7.4 5.0 Good Performance Habit
## 2366 8.16 8.3 4.2 Good Performance Habit
## 2367 3.02 8.0 7.1 Reduce Stress
## 2368 7.86 7.0 3.9 Good Performance Habit
## 2369 2.68 6.1 4.7 Increase Study Time
## 2370 3.84 6.6 6.6 Reduce Stress
## 2371 3.62 9.2 6.0 Good Performance Habit
## 2372 5.00 7.7 3.2 Good Performance Habit
## 2373 4.19 8.9 4.1 Good Performance Habit
## 2374 6.15 6.0 3.5 Good Performance Habit
## 2375 5.20 8.4 5.6 Reduce Screen Time
## 2376 9.59 10.0 4.5 Good Performance Habit
## 2377 5.95 6.0 5.3 Good Performance Habit
## 2378 4.67 8.8 5.1 Good Performance Habit
## 2379 5.93 6.5 6.0 Good Performance Habit
## 2380 6.38 7.1 2.0 Reduce Screen Time
## 2381 4.80 6.4 6.1 Reduce Stress
## 2382 2.95 6.9 8.2 Increase Study Time
## 2383 3.57 7.2 6.4 Reduce Stress
## 2384 5.54 5.6 7.4 Improve Sleep
## 2385 6.85 7.8 3.7 Good Performance Habit
## 2386 6.14 6.6 6.4 Reduce Stress
## 2387 5.01 6.3 5.5 Good Performance Habit
## 2388 6.31 9.3 4.6 Good Performance Habit
## 2389 4.19 7.8 10.0 Reduce Stress
## 2390 5.70 6.1 3.0 Good Performance Habit
## 2391 8.02 7.1 7.1 Reduce Stress
## 2392 7.41 6.5 1.9 Good Performance Habit
## 2393 7.89 5.0 3.9 Improve Sleep
## 2394 4.44 8.0 3.5 Good Performance Habit
## 2395 5.59 5.2 6.1 Improve Sleep
## 2396 3.16 6.8 7.2 Reduce Stress
## 2397 7.02 4.5 4.7 Improve Sleep
## 2398 4.33 7.6 4.8 Good Performance Habit
## 2399 2.54 6.6 3.2 Increase Study Time
## 2400 4.18 7.4 6.2 Reduce Stress
## 2401 5.68 7.0 6.2 Reduce Stress
## 2402 0.76 7.3 3.4 Increase Study Time
## 2403 2.34 7.0 6.2 Increase Study Time
## 2404 7.15 6.1 2.9 Good Performance Habit
## 2405 5.36 4.6 7.3 Improve Sleep
## 2406 5.08 9.3 5.2 Good Performance Habit
## 2407 1.95 6.4 2.8 Increase Study Time
## 2408 8.34 8.8 5.2 Good Performance Habit
## 2409 7.23 8.1 6.7 Reduce Stress
## 2410 6.58 6.7 6.3 Reduce Stress
## 2411 2.95 6.3 5.7 Increase Study Time
## 2412 6.33 7.6 2.9 Good Performance Habit
## 2413 7.46 7.7 3.8 Reduce Screen Time
## 2414 4.52 7.2 8.3 Reduce Stress
## 2415 4.67 7.2 5.2 Good Performance Habit
## 2416 4.22 7.6 6.7 Reduce Stress
## 2417 6.37 6.5 4.8 Reduce Screen Time
## 2418 4.70 5.4 7.1 Improve Sleep
## 2419 4.53 7.7 3.4 Good Performance Habit
## 2420 2.26 6.0 5.0 Increase Study Time
## 2421 1.84 7.6 6.7 Increase Study Time
## 2422 7.04 6.7 7.7 Reduce Stress
## 2423 8.32 5.7 5.3 Improve Sleep
## 2424 6.90 5.5 7.8 Improve Sleep
## 2425 8.00 5.8 5.7 Improve Sleep
## 2426 4.08 6.6 5.7 Good Performance Habit
## 2427 5.06 6.8 4.1 Good Performance Habit
## 2428 5.91 7.9 4.6 Reduce Screen Time
## 2429 4.83 6.5 2.9 Reduce Screen Time
## 2430 8.50 6.4 5.6 Good Performance Habit
## 2431 2.51 5.8 4.6 Increase Study Time
## 2432 4.01 7.4 5.5 Reduce Screen Time
## 2433 4.46 5.7 4.0 Improve Sleep
## 2434 3.74 6.4 5.2 Reduce Screen Time
## 2435 6.85 7.6 9.7 Reduce Stress
## 2436 1.17 8.1 4.9 Increase Study Time
## 2437 7.43 8.1 6.2 Reduce Stress
## 2438 6.97 7.9 6.0 Good Performance Habit
## 2439 5.79 7.4 2.5 Good Performance Habit
## 2440 7.95 7.0 6.0 Reduce Screen Time
## 2441 9.86 8.5 2.1 Good Performance Habit
## 2442 5.53 6.8 7.1 Reduce Stress
## 2443 6.63 5.1 4.1 Improve Sleep
## 2444 5.95 7.5 4.0 Good Performance Habit
## 2445 6.21 6.5 3.8 Good Performance Habit
## 2446 4.16 7.8 1.6 Good Performance Habit
## 2447 3.73 6.8 4.9 Good Performance Habit
## 2448 6.39 6.1 4.4 Reduce Screen Time
## 2449 4.14 7.7 7.7 Reduce Stress
## 2450 7.04 7.0 5.5 Good Performance Habit
## 2451 6.78 6.0 2.6 Good Performance Habit
## 2452 4.29 5.2 7.5 Improve Sleep
## 2453 5.91 5.8 4.4 Improve Sleep
## 2454 5.35 8.2 5.9 Good Performance Habit
## 2455 4.92 9.0 5.9 Good Performance Habit
## 2456 7.46 8.0 3.9 Reduce Screen Time
## 2457 5.28 5.7 1.5 Improve Sleep
## 2458 5.66 6.4 2.4 Good Performance Habit
## 2459 1.32 6.9 4.0 Increase Study Time
## 2460 6.39 7.6 6.7 Reduce Stress
## 2461 2.32 5.9 6.0 Increase Study Time
## 2462 4.43 8.0 6.5 Reduce Stress
## 2463 8.42 8.1 2.0 Good Performance Habit
## 2464 8.77 6.2 1.8 Good Performance Habit
## 2465 4.42 6.2 5.2 Reduce Screen Time
## 2466 2.69 7.8 1.9 Increase Study Time
## 2467 6.00 8.2 6.8 Reduce Stress
## 2468 4.41 7.8 5.2 Good Performance Habit
## 2469 5.88 5.7 7.2 Improve Sleep
## 2470 2.52 5.0 5.6 Increase Study Time
## 2471 7.44 7.3 4.6 Good Performance Habit
## 2472 8.30 8.2 4.6 Good Performance Habit
## 2473 2.32 7.9 3.3 Increase Study Time
## 2474 3.67 5.8 8.3 Improve Sleep
## 2475 3.82 7.6 2.6 Good Performance Habit
## 2476 6.67 7.7 5.5 Good Performance Habit
## 2477 1.28 6.2 3.2 Increase Study Time
## 2478 5.62 5.4 1.8 Improve Sleep
## 2479 4.75 9.6 8.0 Reduce Stress
## 2480 3.63 7.6 1.6 Reduce Screen Time
## 2481 6.62 8.0 3.5 Good Performance Habit
## 2482 1.31 9.7 6.1 Increase Study Time
## 2483 2.48 7.7 8.2 Increase Study Time
## 2484 3.65 6.2 4.9 Good Performance Habit
## 2485 6.63 6.6 2.0 Good Performance Habit
## 2486 4.52 8.7 4.6 Reduce Screen Time
## 2487 3.56 7.2 5.9 Good Performance Habit
## 2488 6.17 6.4 3.8 Good Performance Habit
## 2489 4.26 9.3 3.9 Good Performance Habit
## 2490 3.93 7.4 7.1 Reduce Stress
## 2491 4.61 7.6 7.1 Reduce Stress
## 2492 5.90 8.3 4.5 Good Performance Habit
## 2493 10.61 5.1 6.5 Improve Sleep
## 2494 3.05 6.6 4.9 Good Performance Habit
## 2495 5.78 7.4 1.0 Reduce Screen Time
## 2496 4.92 6.8 6.5 Reduce Stress
## 2497 4.71 8.0 2.6 Reduce Screen Time
## 2498 8.27 5.9 1.0 Improve Sleep
## 2499 6.78 5.9 5.8 Improve Sleep
## 2500 6.58 7.1 6.0 Good Performance Habit
## 2501 4.34 7.0 5.5 Reduce Screen Time
## 2502 3.55 5.4 6.4 Improve Sleep
## 2503 5.83 7.3 6.1 Reduce Stress
## 2504 4.68 8.6 6.4 Reduce Stress
## 2505 4.10 6.7 5.4 Good Performance Habit
## 2506 6.59 5.9 6.2 Improve Sleep
## 2507 2.84 9.3 1.9 Increase Study Time
## 2508 3.80 9.5 3.9 Good Performance Habit
## 2509 6.83 6.8 7.4 Reduce Stress
## 2510 5.09 8.1 8.7 Reduce Stress
## 2511 6.59 6.3 7.8 Reduce Stress
## 2512 3.56 7.0 4.9 Reduce Screen Time
## 2513 6.67 5.6 3.2 Improve Sleep
## 2514 3.85 6.9 4.4 Reduce Screen Time
## 2515 7.97 8.9 6.2 Reduce Stress
## 2516 6.85 7.3 4.4 Good Performance Habit
## 2517 6.20 8.1 5.1 Reduce Screen Time
## 2518 8.34 5.2 8.7 Improve Sleep
## 2519 5.97 7.7 6.6 Reduce Stress
## 2520 4.01 7.0 7.8 Reduce Stress
## 2521 8.38 8.1 1.0 Reduce Screen Time
## 2522 5.97 6.0 5.5 Good Performance Habit
## 2523 7.72 7.2 6.7 Reduce Stress
## 2524 5.59 4.8 5.6 Improve Sleep
## 2525 7.61 6.2 4.2 Good Performance Habit
## 2526 3.56 8.6 7.2 Reduce Stress
## 2527 2.77 7.3 3.1 Increase Study Time
## 2528 2.49 5.8 4.4 Increase Study Time
## 2529 6.81 8.5 6.0 Good Performance Habit
## 2530 1.37 7.7 4.3 Increase Study Time
## 2531 1.74 6.9 3.9 Increase Study Time
## 2532 2.47 7.5 3.1 Increase Study Time
## 2533 5.76 6.7 7.8 Reduce Stress
## 2534 6.18 7.9 2.9 Good Performance Habit
## 2535 3.68 9.3 4.5 Reduce Screen Time
## 2536 6.88 4.8 3.8 Improve Sleep
## 2537 5.94 7.5 4.3 Reduce Screen Time
## 2538 7.73 4.0 5.7 Improve Sleep
## 2539 7.20 7.0 2.6 Reduce Screen Time
## 2540 3.93 6.0 7.3 Reduce Stress
## 2541 5.71 7.8 3.0 Good Performance Habit
## 2542 4.98 7.3 5.0 Good Performance Habit
## 2543 6.24 8.2 8.4 Reduce Stress
## 2544 5.72 7.3 5.7 Good Performance Habit
## 2545 5.37 8.3 9.1 Reduce Stress
## 2546 6.74 5.3 4.1 Improve Sleep
## 2547 5.44 5.3 5.5 Improve Sleep
## 2548 6.79 4.7 1.0 Improve Sleep
## 2549 5.39 6.4 3.8 Good Performance Habit
## 2550 5.01 6.1 7.8 Reduce Stress
## 2551 7.17 8.7 6.0 Reduce Screen Time
## 2552 7.23 8.4 5.9 Good Performance Habit
## 2553 7.80 7.6 5.4 Good Performance Habit
## 2554 6.58 7.1 4.8 Good Performance Habit
## 2555 4.90 8.1 3.2 Reduce Screen Time
## 2556 5.71 5.8 6.0 Improve Sleep
## 2557 5.64 7.9 2.1 Good Performance Habit
## 2558 1.82 6.3 5.1 Increase Study Time
## 2559 3.09 9.0 6.8 Reduce Stress
## 2560 8.37 7.2 4.0 Good Performance Habit
## 2561 5.21 7.1 4.1 Reduce Screen Time
## 2562 0.68 6.3 5.9 Increase Study Time
## 2563 5.09 7.9 3.1 Good Performance Habit
## 2564 5.65 8.3 4.7 Good Performance Habit
## 2565 2.87 8.7 2.4 Increase Study Time
## 2566 9.87 6.7 6.8 Reduce Stress
## 2567 7.57 7.5 5.9 Reduce Screen Time
## 2568 6.95 6.6 5.9 Good Performance Habit
## 2569 4.95 7.5 3.6 Good Performance Habit
## 2570 6.29 7.3 6.8 Reduce Stress
## 2571 7.01 6.4 6.4 Reduce Stress
## 2572 6.27 6.4 4.8 Good Performance Habit
## 2573 3.99 8.7 2.0 Good Performance Habit
## 2574 5.70 8.1 5.2 Good Performance Habit
## 2575 5.58 6.8 3.5 Reduce Screen Time
## 2576 5.90 6.9 2.2 Good Performance Habit
## 2577 3.24 7.9 6.5 Reduce Stress
## 2578 5.84 6.6 5.0 Good Performance Habit
## 2579 5.32 7.9 5.3 Good Performance Habit
## 2580 5.78 7.5 5.8 Reduce Screen Time
## 2581 5.71 6.4 2.8 Good Performance Habit
## 2582 2.43 4.2 1.8 Increase Study Time
## 2583 7.01 8.6 6.3 Reduce Stress
## 2584 6.79 8.3 3.2 Good Performance Habit
## 2585 2.62 4.7 5.8 Increase Study Time
## 2586 5.10 7.3 4.9 Reduce Screen Time
## 2587 3.59 6.0 5.3 Good Performance Habit
## 2588 4.38 7.5 5.5 Reduce Screen Time
## 2589 7.28 9.5 4.9 Good Performance Habit
## 2590 6.34 10.0 2.2 Good Performance Habit
## 2591 9.23 7.9 2.1 Good Performance Habit
## 2592 5.46 8.1 5.9 Good Performance Habit
## 2593 3.04 6.5 1.0 Good Performance Habit
## 2594 5.49 8.0 5.2 Reduce Screen Time
## 2595 0.39 7.9 6.3 Increase Study Time
## 2596 8.81 8.3 2.6 Good Performance Habit
## 2597 5.77 7.0 1.7 Good Performance Habit
## 2598 6.13 6.3 2.8 Good Performance Habit
## 2599 5.54 8.2 2.6 Good Performance Habit
## 2600 3.53 8.1 6.6 Reduce Stress
## 2601 4.99 6.9 5.8 Reduce Screen Time
## 2602 3.66 6.7 3.5 Good Performance Habit
## 2603 4.20 4.4 4.3 Improve Sleep
## 2604 5.87 5.2 5.0 Improve Sleep
## 2605 2.80 6.9 5.1 Increase Study Time
## 2606 8.46 7.4 7.4 Reduce Stress
## 2607 3.06 5.4 6.5 Improve Sleep
## 2608 6.83 6.6 5.2 Good Performance Habit
## 2609 3.90 6.3 6.7 Reduce Stress
## 2610 2.68 6.4 4.4 Increase Study Time
## 2611 5.92 8.4 6.7 Reduce Stress
## 2612 5.47 8.3 5.5 Good Performance Habit
## 2613 4.69 4.7 3.0 Improve Sleep
## 2614 5.01 8.3 5.4 Reduce Screen Time
## 2615 3.88 7.5 6.6 Reduce Stress
## 2616 5.96 6.6 4.3 Good Performance Habit
## 2617 4.15 7.9 3.0 Good Performance Habit
## 2618 5.14 7.2 10.0 Reduce Stress
## 2619 7.30 8.5 4.8 Reduce Screen Time
## 2620 2.45 7.3 3.0 Increase Study Time
## 2621 3.94 6.2 2.0 Good Performance Habit
## 2622 3.73 5.9 7.4 Improve Sleep
## 2623 3.48 8.4 7.0 Reduce Stress
## 2624 2.38 4.5 4.6 Increase Study Time
## 2625 4.51 7.5 7.5 Reduce Stress
## 2626 5.35 10.0 6.8 Reduce Stress
## 2627 4.82 7.9 1.7 Good Performance Habit
## 2628 1.86 7.6 5.6 Increase Study Time
## 2629 6.39 6.2 7.5 Reduce Stress
## 2630 6.44 4.8 5.3 Improve Sleep
## 2631 5.17 6.6 6.0 Reduce Screen Time
## 2632 3.04 8.6 7.0 Reduce Stress
## 2633 3.32 3.0 8.1 Improve Sleep
## 2634 8.90 5.6 6.0 Improve Sleep
## 2635 8.45 6.4 6.6 Reduce Stress
## 2636 5.96 6.7 6.1 Reduce Stress
## 2637 3.20 5.2 2.3 Improve Sleep
## 2638 7.52 8.0 7.1 Reduce Stress
## 2639 5.37 5.5 6.2 Improve Sleep
## 2640 8.34 7.1 1.8 Good Performance Habit
## 2641 3.87 5.1 7.3 Improve Sleep
## 2642 5.94 7.3 4.3 Good Performance Habit
## 2643 4.59 6.4 5.1 Good Performance Habit
## 2644 6.50 4.8 6.3 Improve Sleep
## 2645 3.75 6.6 5.5 Good Performance Habit
## 2646 6.83 8.0 8.1 Reduce Stress
## 2647 4.24 8.2 6.1 Reduce Stress
## 2648 3.24 8.2 7.5 Reduce Stress
## 2649 6.14 5.9 2.7 Improve Sleep
## 2650 5.47 8.5 4.6 Good Performance Habit
## 2651 0.80 7.1 3.0 Increase Study Time
## 2652 4.92 7.5 5.5 Good Performance Habit
## 2653 5.21 8.1 4.4 Good Performance Habit
## 2654 5.37 5.1 4.2 Improve Sleep
## 2655 9.07 7.9 5.5 Good Performance Habit
## 2656 3.72 5.4 5.7 Improve Sleep
## 2657 4.97 7.9 1.9 Good Performance Habit
## 2658 1.62 6.7 3.2 Increase Study Time
## 2659 2.10 7.8 2.9 Increase Study Time
## 2660 3.86 6.4 4.1 Good Performance Habit
## 2661 4.74 6.2 7.6 Reduce Stress
## 2662 4.61 7.8 8.6 Reduce Stress
## 2663 6.27 6.6 3.7 Reduce Screen Time
## 2664 6.46 8.9 3.0 Reduce Screen Time
## 2665 7.01 6.7 7.2 Reduce Stress
## 2666 4.67 8.9 5.7 Good Performance Habit
## 2667 5.98 5.4 6.6 Improve Sleep
## 2668 3.57 8.1 6.3 Reduce Stress
## 2669 5.72 6.8 8.2 Reduce Stress
## 2670 5.96 8.0 5.3 Good Performance Habit
## 2671 4.00 6.2 3.9 Good Performance Habit
## 2672 0.68 7.4 4.2 Increase Study Time
## 2673 3.70 7.6 4.0 Good Performance Habit
## 2674 10.13 6.0 4.6 Good Performance Habit
## 2675 4.80 7.3 7.0 Reduce Stress
## 2676 3.73 6.6 4.5 Good Performance Habit
## 2677 5.21 5.6 7.7 Improve Sleep
## 2678 7.22 8.0 5.9 Good Performance Habit
## 2679 5.66 6.8 4.7 Good Performance Habit
## 2680 4.59 5.0 4.2 Improve Sleep
## 2681 2.44 7.6 3.2 Increase Study Time
## 2682 4.40 6.6 6.0 Good Performance Habit
## 2683 2.61 7.1 10.0 Increase Study Time
## 2684 5.70 7.1 6.1 Reduce Stress
## 2685 8.00 7.5 5.4 Good Performance Habit
## 2686 7.10 6.0 6.1 Reduce Stress
## 2687 3.81 6.1 7.9 Reduce Stress
## 2688 3.03 8.3 5.2 Good Performance Habit
## 2689 2.21 6.3 4.6 Increase Study Time
## 2690 5.88 6.8 2.3 Reduce Screen Time
## 2691 6.13 4.7 2.1 Improve Sleep
## 2692 6.57 7.6 5.7 Good Performance Habit
## 2693 5.67 7.0 5.0 Good Performance Habit
## 2694 2.57 7.4 1.9 Increase Study Time
## 2695 1.15 8.5 3.7 Increase Study Time
## 2696 7.21 7.7 6.1 Reduce Stress
## 2697 3.31 7.4 3.9 Good Performance Habit
## 2698 8.77 8.9 2.8 Reduce Screen Time
## 2699 0.77 8.2 7.2 Increase Study Time
## 2700 2.77 7.9 5.4 Increase Study Time
## 2701 3.11 7.3 5.7 Reduce Screen Time
## 2702 5.50 7.4 4.5 Good Performance Habit
## 2703 6.30 8.5 4.1 Good Performance Habit
## 2704 3.87 6.0 2.8 Good Performance Habit
## 2705 6.16 6.1 5.6 Good Performance Habit
## 2706 2.37 6.4 4.1 Increase Study Time
## 2707 3.97 5.9 7.1 Improve Sleep
## 2708 2.54 6.3 6.6 Increase Study Time
## 2709 3.85 7.5 5.3 Reduce Screen Time
## 2710 3.68 8.4 6.3 Reduce Stress
## 2711 5.57 7.2 6.3 Reduce Stress
## 2712 11.83 7.7 3.3 Reduce Screen Time
## 2713 2.22 7.9 3.7 Increase Study Time
## 2714 4.56 9.5 6.1 Reduce Stress
## 2715 6.32 7.0 6.0 Good Performance Habit
## 2716 5.10 7.1 5.9 Good Performance Habit
## 2717 7.79 7.1 5.6 Good Performance Habit
## 2718 2.91 7.1 5.8 Increase Study Time
## 2719 6.51 4.8 6.1 Improve Sleep
## 2720 3.39 7.8 6.2 Reduce Stress
## 2721 6.59 9.0 2.6 Good Performance Habit
## 2722 5.29 5.5 5.7 Improve Sleep
## 2723 5.45 7.4 6.3 Reduce Stress
## 2724 3.78 9.5 5.9 Good Performance Habit
## 2725 1.26 8.3 6.9 Increase Study Time
## 2726 2.75 8.4 7.2 Increase Study Time
## 2727 6.37 5.8 6.2 Improve Sleep
## 2728 4.43 7.3 6.3 Reduce Stress
## 2729 6.43 7.0 6.1 Reduce Stress
## 2730 2.31 6.6 6.2 Increase Study Time
## 2731 6.24 5.8 1.0 Improve Sleep
## 2732 6.97 5.9 3.9 Improve Sleep
## 2733 0.54 5.4 7.9 Increase Study Time
## 2734 5.60 5.9 4.9 Improve Sleep
## 2735 8.83 6.7 5.8 Reduce Screen Time
## 2736 3.45 6.6 6.5 Reduce Stress
## 2737 6.96 6.4 6.3 Reduce Stress
## 2738 5.04 7.1 5.3 Good Performance Habit
## 2739 6.67 8.1 4.4 Good Performance Habit
## 2740 4.19 5.2 5.0 Improve Sleep
## 2741 3.42 7.4 5.8 Good Performance Habit
## 2742 4.11 5.8 2.7 Improve Sleep
## 2743 4.24 8.8 4.3 Good Performance Habit
## 2744 3.79 6.9 6.1 Reduce Stress
## 2745 3.21 7.3 6.1 Reduce Stress
## 2746 7.17 7.8 6.0 Good Performance Habit
## 2747 3.81 8.7 4.5 Reduce Screen Time
## 2748 2.56 5.5 4.4 Increase Study Time
## 2749 3.10 7.1 1.9 Reduce Screen Time
## 2750 5.95 6.0 5.1 Good Performance Habit
## 2751 0.52 9.2 8.0 Increase Study Time
## 2752 5.97 5.7 6.8 Improve Sleep
## 2753 6.40 7.9 1.9 Reduce Screen Time
## 2754 7.52 6.5 5.3 Reduce Screen Time
## 2755 4.09 8.8 4.2 Good Performance Habit
## 2756 3.34 6.6 6.0 Good Performance Habit
## 2757 5.32 6.2 4.5 Good Performance Habit
## 2758 5.26 8.3 4.7 Good Performance Habit
## 2759 7.60 6.2 6.0 Good Performance Habit
## 2760 5.09 6.2 7.5 Reduce Stress
## 2761 4.13 9.6 1.7 Good Performance Habit
## 2762 2.32 9.6 5.0 Increase Study Time
## 2763 4.56 6.4 6.8 Reduce Stress
## 2764 5.13 6.8 8.8 Reduce Stress
## 2765 7.34 9.9 2.8 Reduce Screen Time
## 2766 5.20 7.6 6.9 Reduce Stress
## 2767 7.68 6.8 5.7 Good Performance Habit
## 2768 7.47 6.8 5.9 Good Performance Habit
## 2769 3.46 7.1 4.8 Reduce Screen Time
## 2770 2.71 6.9 4.4 Increase Study Time
## 2771 3.72 6.4 4.5 Reduce Screen Time
## 2772 4.52 6.3 7.6 Reduce Stress
## 2773 3.37 7.4 4.2 Good Performance Habit
## 2774 6.39 7.0 1.0 Good Performance Habit
## 2775 6.34 6.8 6.1 Reduce Stress
## 2776 7.41 8.0 4.7 Reduce Screen Time
## 2777 5.55 8.5 2.7 Good Performance Habit
## 2778 4.12 7.1 6.6 Reduce Stress
## 2779 5.81 5.0 3.4 Improve Sleep
## 2780 3.18 7.8 6.8 Reduce Stress
## 2781 5.29 9.4 3.8 Good Performance Habit
## 2782 3.47 5.2 7.0 Improve Sleep
## 2783 7.31 7.8 3.1 Reduce Screen Time
## 2784 0.80 6.3 5.1 Increase Study Time
## 2785 6.69 9.0 4.4 Good Performance Habit
## 2786 6.76 4.8 5.1 Improve Sleep
## 2787 4.92 6.2 3.7 Reduce Screen Time
## 2788 5.67 6.9 5.8 Reduce Screen Time
## 2789 5.41 6.7 3.3 Good Performance Habit
## 2790 7.59 7.6 3.5 Good Performance Habit
## 2791 8.31 8.8 1.3 Good Performance Habit
## 2792 5.02 6.1 4.9 Good Performance Habit
## 2793 8.27 5.9 5.4 Improve Sleep
## 2794 3.71 9.5 3.2 Good Performance Habit
## 2795 5.83 7.8 8.9 Reduce Stress
## 2796 5.88 5.3 5.4 Improve Sleep
## 2797 2.48 3.7 4.2 Increase Study Time
## 2798 5.66 7.5 3.4 Good Performance Habit
## 2799 3.67 6.7 5.1 Good Performance Habit
## 2800 6.59 8.6 8.4 Reduce Stress
## 2801 3.22 7.0 2.6 Good Performance Habit
## 2802 1.45 8.7 4.8 Increase Study Time
## 2803 2.40 9.1 6.1 Increase Study Time
## 2804 5.04 5.7 5.1 Improve Sleep
## 2805 5.62 6.2 4.8 Good Performance Habit
## 2806 5.68 6.9 4.5 Good Performance Habit
## 2807 3.47 7.1 5.4 Good Performance Habit
## 2808 6.58 6.8 1.4 Good Performance Habit
## 2809 3.90 8.6 7.3 Reduce Stress
## 2810 4.56 7.7 7.2 Reduce Stress
## 2811 6.96 8.3 5.3 Good Performance Habit
## 2812 4.68 5.8 5.9 Improve Sleep
## 2813 1.24 4.2 4.1 Increase Study Time
## 2814 6.43 6.4 6.3 Reduce Stress
## 2815 5.00 6.2 3.5 Good Performance Habit
## 2816 4.23 7.0 8.5 Reduce Stress
## 2817 7.57 6.6 3.3 Good Performance Habit
## 2818 3.74 6.2 2.6 Good Performance Habit
## 2819 6.30 7.7 3.3 Good Performance Habit
## 2820 5.27 6.9 3.8 Good Performance Habit
## 2821 10.19 6.5 5.1 Good Performance Habit
## 2822 1.40 7.4 4.6 Increase Study Time
## 2823 5.39 6.1 3.5 Good Performance Habit
## 2824 5.69 9.8 5.4 Reduce Screen Time
## 2825 7.19 8.4 4.2 Reduce Screen Time
## 2826 4.16 5.5 2.5 Improve Sleep
## 2827 3.73 4.9 2.3 Improve Sleep
## 2828 7.78 7.2 3.2 Good Performance Habit
## 2829 4.14 6.6 5.0 Good Performance Habit
## 2830 5.55 6.3 4.4 Good Performance Habit
## 2831 4.89 5.7 3.6 Improve Sleep
## 2832 5.76 5.7 3.9 Improve Sleep
## 2833 2.30 9.5 6.7 Increase Study Time
## 2834 3.91 7.8 8.2 Reduce Stress
## 2835 4.88 7.1 3.4 Reduce Screen Time
## 2836 5.21 6.0 2.4 Reduce Screen Time
## 2837 7.19 5.8 1.0 Improve Sleep
## 2838 6.01 5.9 9.3 Improve Sleep
## 2839 6.15 6.7 3.7 Reduce Screen Time
## 2840 4.88 5.5 4.9 Improve Sleep
## 2841 7.51 6.7 4.4 Reduce Screen Time
## 2842 3.78 7.5 6.9 Reduce Stress
## 2843 4.80 5.9 1.5 Improve Sleep
## 2844 2.02 4.9 5.9 Increase Study Time
## 2845 2.90 8.7 4.6 Increase Study Time
## 2846 6.69 6.1 6.3 Reduce Stress
## 2847 4.90 7.0 4.1 Good Performance Habit
## 2848 1.29 8.6 3.3 Increase Study Time
## 2849 4.90 7.6 4.2 Good Performance Habit
## 2850 4.52 6.9 1.9 Good Performance Habit
## 2851 2.72 6.7 3.3 Increase Study Time
## 2852 5.66 5.5 3.0 Improve Sleep
## 2853 4.45 6.6 9.0 Reduce Stress
## 2854 5.01 7.4 2.9 Good Performance Habit
## 2855 6.87 8.2 8.4 Reduce Stress
## 2856 3.76 5.9 5.5 Improve Sleep
## 2857 7.14 7.6 4.8 Reduce Screen Time
## 2858 4.45 8.7 7.3 Reduce Stress
## 2859 4.47 7.6 3.3 Good Performance Habit
## 2860 7.56 8.2 5.2 Good Performance Habit
## 2861 5.74 5.9 4.0 Improve Sleep
## 2862 4.17 6.1 6.7 Reduce Stress
## 2863 4.75 8.7 4.0 Good Performance Habit
## 2864 5.41 8.6 5.4 Good Performance Habit
## 2865 2.08 7.2 5.8 Increase Study Time
## 2866 6.32 6.0 4.4 Good Performance Habit
## 2867 4.98 7.9 1.5 Good Performance Habit
## 2868 2.40 6.0 7.1 Increase Study Time
## 2869 3.10 7.0 7.0 Reduce Stress
## 2870 6.71 9.5 7.2 Reduce Stress
## 2871 2.46 8.1 2.2 Increase Study Time
## 2872 9.27 7.6 4.9 Reduce Screen Time
## 2873 2.85 6.6 4.7 Increase Study Time
## 2874 5.39 4.5 4.4 Improve Sleep
## 2875 1.02 7.9 7.2 Increase Study Time
## 2876 4.83 6.9 6.1 Reduce Stress
## 2877 3.93 7.9 5.9 Good Performance Habit
## 2878 5.94 5.1 4.4 Improve Sleep
## 2879 5.35 6.9 6.7 Reduce Stress
## 2880 4.30 7.8 2.7 Good Performance Habit
## 2881 9.26 8.4 5.3 Reduce Screen Time
## 2882 6.50 6.3 6.4 Reduce Stress
## 2883 3.49 5.0 4.1 Improve Sleep
## 2884 5.65 6.9 4.3 Reduce Screen Time
## 2885 0.93 7.1 8.9 Increase Study Time
## 2886 3.78 7.9 1.6 Good Performance Habit
## 2887 7.43 7.2 5.9 Good Performance Habit
## 2888 3.83 8.1 3.7 Good Performance Habit
## 2889 5.22 6.9 3.3 Good Performance Habit
## 2890 2.63 5.7 5.7 Increase Study Time
## 2891 6.50 7.7 5.3 Good Performance Habit
## 2892 5.16 6.8 5.9 Good Performance Habit
## 2893 4.92 7.1 4.8 Good Performance Habit
## 2894 6.79 8.0 3.3 Reduce Screen Time
## 2895 8.19 7.7 6.6 Reduce Stress
## 2896 6.51 6.9 2.6 Reduce Screen Time
## 2897 1.45 7.8 1.2 Increase Study Time
## 2898 5.71 8.6 5.8 Reduce Screen Time
## 2899 5.44 7.2 4.2 Good Performance Habit
## 2900 2.62 5.3 4.5 Increase Study Time
## 2901 1.68 7.5 3.2 Increase Study Time
## 2902 4.09 7.1 1.3 Good Performance Habit
## 2903 4.30 7.4 1.6 Good Performance Habit
## 2904 4.76 3.7 4.6 Improve Sleep
## 2905 3.43 4.7 3.1 Improve Sleep
## 2906 5.20 5.5 6.8 Improve Sleep
## 2907 5.48 6.4 6.3 Reduce Stress
## 2908 4.31 6.0 7.1 Reduce Stress
## 2909 5.65 6.0 2.9 Good Performance Habit
## 2910 3.71 6.0 4.8 Good Performance Habit
## 2911 1.74 6.3 8.9 Increase Study Time
## 2912 4.87 5.9 4.3 Improve Sleep
## 2913 6.64 5.7 1.3 Improve Sleep
## 2914 10.27 6.8 5.9 Good Performance Habit
## 2915 0.63 7.3 3.3 Increase Study Time
## 2916 3.87 6.6 6.7 Reduce Stress
## 2917 3.13 5.8 5.2 Improve Sleep
## 2918 5.42 6.5 4.0 Good Performance Habit
## 2919 3.12 9.0 4.2 Good Performance Habit
## 2920 5.13 7.0 7.6 Reduce Stress
## 2921 6.86 6.1 7.3 Reduce Stress
## 2922 3.38 7.2 4.8 Reduce Screen Time
## 2923 4.74 5.7 5.0 Improve Sleep
## 2924 8.12 6.1 6.3 Reduce Stress
## 2925 6.65 8.3 5.8 Good Performance Habit
## 2926 1.65 8.7 5.3 Increase Study Time
## 2927 9.03 6.8 2.4 Good Performance Habit
## 2928 3.53 6.2 5.1 Good Performance Habit
## 2929 5.50 8.6 3.1 Good Performance Habit
## 2930 4.07 7.1 9.5 Reduce Stress
## 2931 3.98 8.2 5.1 Good Performance Habit
## 2932 3.51 5.3 6.3 Improve Sleep
## 2933 6.14 6.1 5.0 Reduce Screen Time
## 2934 3.35 5.9 3.0 Improve Sleep
## 2935 2.38 4.6 6.8 Increase Study Time
## 2936 3.76 3.5 8.6 Improve Sleep
## 2937 4.90 7.8 6.2 Reduce Stress
## 2938 0.89 6.7 6.4 Increase Study Time
## 2939 6.49 6.6 3.1 Good Performance Habit
## 2940 3.47 7.0 2.3 Good Performance Habit
## 2941 6.35 6.8 3.3 Good Performance Habit
## 2942 7.67 7.3 2.6 Good Performance Habit
## 2943 5.53 5.9 2.0 Improve Sleep
## 2944 5.97 9.0 8.2 Reduce Stress
## 2945 4.01 7.1 2.8 Good Performance Habit
## 2946 3.57 6.2 4.6 Good Performance Habit
## 2947 1.12 5.4 4.4 Increase Study Time
## 2948 4.52 7.3 4.2 Good Performance Habit
## 2949 3.82 8.2 4.2 Good Performance Habit
## 2950 0.17 6.1 1.0 Increase Study Time
## 2951 5.45 6.7 6.0 Good Performance Habit
## 2952 7.94 5.5 5.5 Improve Sleep
## 2953 5.71 5.2 6.2 Improve Sleep
## 2954 7.23 9.7 8.7 Reduce Stress
## 2955 4.37 6.6 7.0 Reduce Stress
## 2956 2.88 7.1 7.4 Increase Study Time
## 2957 5.04 8.8 3.3 Good Performance Habit
## 2958 4.22 7.3 5.6 Reduce Screen Time
## 2959 2.64 8.4 5.3 Increase Study Time
## 2960 6.98 4.9 3.4 Improve Sleep
## 2961 5.25 9.0 1.5 Reduce Screen Time
## 2962 3.60 7.1 3.3 Good Performance Habit
## 2963 5.31 8.7 4.3 Good Performance Habit
## 2964 4.62 6.6 1.0 Good Performance Habit
## 2965 6.15 6.9 4.6 Good Performance Habit
## 2966 8.11 7.8 5.8 Good Performance Habit
## 2967 3.68 7.3 3.9 Reduce Screen Time
## 2968 2.53 7.2 8.2 Increase Study Time
## 2969 7.68 8.3 5.3 Good Performance Habit
## 2970 9.71 7.3 4.6 Reduce Screen Time
## 2971 3.70 7.2 6.4 Reduce Stress
## 2972 3.10 7.6 4.9 Good Performance Habit
## 2973 2.53 6.5 7.3 Increase Study Time
## 2974 4.91 6.8 2.1 Good Performance Habit
## 2975 5.14 8.7 6.2 Reduce Stress
## 2976 4.40 6.5 1.3 Good Performance Habit
## 2977 6.60 6.8 4.4 Reduce Screen Time
## 2978 3.29 6.3 2.6 Reduce Screen Time
## 2979 3.74 5.9 8.0 Improve Sleep
## 2980 2.42 5.9 6.1 Increase Study Time
## 2981 7.70 8.4 4.1 Good Performance Habit
## 2982 7.08 8.6 7.5 Reduce Stress
## 2983 7.54 5.6 3.7 Improve Sleep
## 2984 3.25 7.8 7.3 Reduce Stress
## 2985 7.61 7.9 7.6 Reduce Stress
## 2986 5.52 8.3 4.0 Good Performance Habit
## 2987 6.37 7.2 5.7 Reduce Screen Time
## 2988 6.10 8.4 7.3 Reduce Stress
## 2989 4.30 8.6 5.5 Reduce Screen Time
## 2990 4.61 4.6 5.4 Improve Sleep
## 2991 1.87 9.8 3.7 Increase Study Time
## 2992 3.85 7.8 4.4 Reduce Screen Time
## 2993 4.50 8.2 4.6 Good Performance Habit
## 2994 2.64 9.1 5.8 Increase Study Time
## 2995 5.15 8.0 6.2 Reduce Stress
## 2996 7.50 6.0 2.1 Reduce Screen Time
## 2997 3.97 8.3 6.9 Reduce Stress
## 2998 3.03 8.5 7.7 Reduce Stress
## 2999 3.25 6.9 4.5 Reduce Screen Time
## 3000 5.33 7.0 1.9 Good Performance Habit
## 3001 8.44 3.4 3.8 Improve Sleep
## 3002 5.28 7.4 4.8 Good Performance Habit
## 3003 5.07 7.5 4.9 Good Performance Habit
## 3004 2.48 5.7 7.7 Increase Study Time
## 3005 5.62 6.1 8.7 Reduce Stress
## 3006 6.21 6.9 7.3 Reduce Stress
## 3007 4.15 5.7 7.0 Improve Sleep
## 3008 4.91 7.9 3.1 Good Performance Habit
## 3009 3.64 5.5 4.4 Improve Sleep
## 3010 6.43 7.5 3.1 Good Performance Habit
## 3011 7.62 5.8 2.3 Improve Sleep
## 3012 5.71 7.6 3.2 Good Performance Habit
## 3013 5.97 5.9 3.2 Improve Sleep
## 3014 5.06 7.3 3.3 Reduce Screen Time
## 3015 3.68 7.2 5.9 Good Performance Habit
## 3016 3.42 5.2 6.0 Improve Sleep
## 3017 4.15 7.4 1.0 Good Performance Habit
## 3018 5.19 7.2 5.9 Reduce Screen Time
## 3019 4.95 6.9 2.9 Good Performance Habit
## 3020 6.98 6.4 6.7 Reduce Stress
## 3021 6.44 8.1 1.0 Good Performance Habit
## 3022 7.93 6.7 4.5 Good Performance Habit
## 3023 6.51 7.4 6.4 Reduce Stress
## 3024 4.48 6.7 1.2 Good Performance Habit
## 3025 5.16 6.4 3.9 Reduce Screen Time
## 3026 1.73 6.1 3.5 Increase Study Time
## 3027 8.29 7.3 8.3 Reduce Stress
## 3028 3.81 6.5 6.3 Reduce Stress
## 3029 4.15 6.8 4.6 Good Performance Habit
## 3030 8.60 7.0 4.0 Good Performance Habit
## 3031 2.83 7.7 5.4 Increase Study Time
## 3032 3.74 4.7 3.6 Improve Sleep
## 3033 4.84 6.0 5.2 Good Performance Habit
## 3034 3.81 6.6 6.0 Good Performance Habit
## 3035 5.15 7.6 3.8 Good Performance Habit
## 3036 5.46 6.3 6.3 Reduce Stress
## 3037 6.24 5.8 3.9 Improve Sleep
## 3038 4.76 6.9 6.4 Reduce Stress
## 3039 6.36 6.6 1.7 Good Performance Habit
## 3040 4.31 8.9 3.1 Reduce Screen Time
## 3041 6.19 7.0 4.7 Reduce Screen Time
## 3042 7.32 8.9 2.2 Reduce Screen Time
## 3043 1.53 7.6 5.9 Increase Study Time
## 3044 4.53 4.2 6.9 Improve Sleep
## 3045 5.34 7.0 5.6 Good Performance Habit
## 3046 1.22 7.5 6.2 Increase Study Time
## 3047 0.79 7.7 4.1 Increase Study Time
## 3048 5.60 8.9 3.9 Good Performance Habit
## 3049 3.69 6.4 8.3 Reduce Stress
## 3050 6.54 6.8 6.4 Reduce Stress
## 3051 4.96 6.2 7.0 Reduce Stress
## 3052 4.95 7.6 4.6 Reduce Screen Time
## 3053 4.28 5.9 5.4 Improve Sleep
## 3054 5.18 6.0 3.1 Good Performance Habit
## 3055 3.18 5.9 4.6 Improve Sleep
## 3056 3.96 6.7 4.0 Good Performance Habit
## 3057 6.54 5.6 3.6 Improve Sleep
## 3058 4.48 8.9 2.4 Good Performance Habit
## 3059 5.99 6.2 3.7 Good Performance Habit
## 3060 4.96 5.6 1.2 Improve Sleep
## 3061 4.31 7.5 1.0 Good Performance Habit
## 3062 3.06 8.4 4.4 Good Performance Habit
## 3063 6.66 5.1 5.0 Improve Sleep
## 3064 3.33 7.0 6.5 Reduce Stress
## 3065 5.72 6.6 1.0 Good Performance Habit
## 3066 1.88 5.0 4.9 Increase Study Time
## 3067 5.52 5.3 6.5 Improve Sleep
## 3068 5.74 8.0 9.5 Reduce Stress
## 3069 3.71 6.4 5.8 Good Performance Habit
## 3070 1.76 6.8 4.7 Increase Study Time
## 3071 4.67 6.0 5.2 Good Performance Habit
## 3072 5.18 6.9 4.5 Good Performance Habit
## 3073 3.94 5.9 5.7 Improve Sleep
## 3074 3.63 8.3 8.2 Reduce Stress
## 3075 6.79 7.4 5.8 Good Performance Habit
## 3076 4.76 7.8 3.9 Reduce Screen Time
## 3077 4.15 7.1 7.3 Reduce Stress
## 3078 6.66 5.1 4.3 Improve Sleep
## 3079 4.94 9.9 3.5 Reduce Screen Time
## 3080 3.59 5.9 7.3 Improve Sleep
## 3081 6.71 6.9 6.0 Reduce Screen Time
## 3082 4.26 5.7 5.8 Improve Sleep
## 3083 6.81 6.8 4.3 Good Performance Habit
## 3084 3.64 5.8 5.1 Improve Sleep
## 3085 5.62 7.4 6.2 Reduce Stress
## 3086 7.43 8.7 4.2 Good Performance Habit
## 3087 5.88 6.2 3.7 Good Performance Habit
## 3088 5.97 6.7 4.5 Good Performance Habit
## 3089 5.87 7.2 4.6 Good Performance Habit
## 3090 6.68 6.6 1.8 Good Performance Habit
## 3091 5.14 7.7 4.8 Reduce Screen Time
## 3092 5.87 8.7 5.1 Good Performance Habit
## 3093 4.53 4.8 3.9 Improve Sleep
## 3094 8.81 8.4 2.7 Reduce Screen Time
## 3095 3.25 6.2 3.8 Good Performance Habit
## 3096 6.62 6.6 4.7 Good Performance Habit
## 3097 3.04 5.6 4.0 Improve Sleep
## 3098 6.05 8.8 3.3 Good Performance Habit
## 3099 7.59 6.8 4.1 Good Performance Habit
## 3100 2.82 7.6 5.5 Increase Study Time
## 3101 8.46 7.0 10.0 Reduce Stress
## 3102 3.08 7.3 7.0 Reduce Stress
## 3103 3.36 7.7 4.8 Good Performance Habit
## 3104 5.62 8.6 7.6 Reduce Stress
## 3105 2.81 9.2 6.1 Increase Study Time
## 3106 6.92 6.6 5.0 Good Performance Habit
## 3107 5.95 5.7 6.6 Improve Sleep
## 3108 1.11 8.3 7.2 Increase Study Time
## 3109 2.16 7.8 2.3 Increase Study Time
## 3110 3.55 7.1 1.0 Good Performance Habit
## 3111 5.80 9.1 5.4 Good Performance Habit
## 3112 2.86 5.5 4.1 Increase Study Time
## 3113 3.55 4.6 6.2 Improve Sleep
## 3114 6.20 7.3 7.7 Reduce Stress
## 3115 3.01 7.2 6.0 Good Performance Habit
## 3116 5.56 5.9 6.2 Improve Sleep
## 3117 2.27 5.4 3.6 Increase Study Time
## 3118 6.95 6.1 5.2 Good Performance Habit
## 3119 7.78 7.2 1.0 Good Performance Habit
## 3120 2.70 6.7 2.7 Increase Study Time
## 3121 0.30 7.1 4.8 Increase Study Time
## 3122 1.64 6.6 3.0 Increase Study Time
## 3123 6.86 8.1 5.2 Reduce Screen Time
## 3124 3.83 6.7 5.2 Good Performance Habit
## 3125 7.03 6.5 6.3 Reduce Stress
## 3126 2.31 5.4 3.8 Increase Study Time
## 3127 3.10 8.1 5.5 Good Performance Habit
## 3128 4.71 5.7 3.1 Improve Sleep
## 3129 7.06 5.0 7.7 Improve Sleep
## 3130 4.52 8.1 7.3 Reduce Stress
## 3131 2.92 6.0 8.2 Increase Study Time
## 3132 5.54 7.7 6.8 Reduce Stress
## 3133 5.11 7.2 5.2 Good Performance Habit
## 3134 5.94 6.1 4.3 Reduce Screen Time
## 3135 4.59 7.9 3.5 Reduce Screen Time
## 3136 3.71 6.4 4.4 Good Performance Habit
## 3137 4.99 9.5 7.1 Reduce Stress
## 3138 0.05 5.4 2.7 Increase Study Time
## 3139 5.47 6.3 7.7 Reduce Stress
## 3140 7.37 5.1 2.7 Improve Sleep
## 3141 6.03 8.8 1.3 Good Performance Habit
## 3142 3.07 6.2 5.6 Good Performance Habit
## 3143 1.92 7.1 6.0 Increase Study Time
## 3144 7.54 7.8 3.6 Good Performance Habit
## 3145 3.94 4.4 5.4 Improve Sleep
## 3146 4.53 6.8 8.4 Reduce Stress
## 3147 5.38 7.4 3.4 Good Performance Habit
## 3148 3.77 7.4 5.9 Reduce Screen Time
## 3149 5.02 6.4 3.3 Good Performance Habit
## 3150 7.90 6.7 4.8 Good Performance Habit
## 3151 3.96 4.5 1.6 Improve Sleep
## 3152 8.73 5.8 7.8 Improve Sleep
## 3153 5.70 6.0 7.1 Reduce Stress
## 3154 5.58 7.3 3.8 Good Performance Habit
## 3155 6.81 5.3 6.6 Improve Sleep
## 3156 6.76 6.3 7.1 Reduce Stress
## 3157 7.03 4.8 2.7 Improve Sleep
## 3158 6.05 6.6 4.3 Good Performance Habit
## 3159 3.80 8.3 6.2 Reduce Stress
## 3160 8.17 7.2 2.3 Good Performance Habit
## 3161 4.65 7.2 8.6 Reduce Stress
## 3162 3.30 5.1 4.0 Improve Sleep
## 3163 6.72 5.5 6.2 Improve Sleep
## 3164 6.23 7.6 1.0 Good Performance Habit
## 3165 4.89 7.1 3.3 Good Performance Habit
## 3166 5.10 10.0 5.2 Good Performance Habit
## 3167 6.10 8.1 7.1 Reduce Stress
## 3168 8.76 7.7 8.1 Reduce Stress
## 3169 4.81 7.5 4.5 Reduce Screen Time
## 3170 2.47 7.7 6.6 Increase Study Time
## 3171 3.83 7.3 5.8 Reduce Screen Time
## 3172 5.96 5.5 3.0 Improve Sleep
## 3173 4.56 7.7 3.9 Good Performance Habit
## 3174 3.64 7.8 8.7 Reduce Stress
## 3175 6.39 6.0 4.1 Good Performance Habit
## 3176 6.41 6.7 2.1 Reduce Screen Time
## 3177 4.55 6.4 5.9 Good Performance Habit
## 3178 5.51 6.7 6.1 Reduce Stress
## 3179 3.69 7.3 6.2 Reduce Stress
## 3180 3.75 5.5 5.0 Improve Sleep
## 3181 4.28 6.8 8.2 Reduce Stress
## 3182 2.26 5.1 5.5 Increase Study Time
## 3183 5.61 8.2 5.3 Good Performance Habit
## 3184 4.79 7.2 9.5 Reduce Stress
## 3185 3.94 7.4 7.7 Reduce Stress
## 3186 5.14 6.3 2.1 Good Performance Habit
## 3187 5.20 7.3 4.7 Good Performance Habit
## 3188 3.46 4.5 4.4 Improve Sleep
## 3189 3.76 6.7 4.4 Good Performance Habit
## 3190 3.35 6.8 6.7 Reduce Stress
## 3191 7.58 6.4 3.5 Good Performance Habit
## 3192 1.60 5.6 5.7 Increase Study Time
## 3193 4.74 8.8 7.6 Reduce Stress
## 3194 6.55 7.5 6.3 Reduce Stress
## 3195 2.76 7.2 5.7 Increase Study Time
## 3196 2.99 6.4 5.6 Increase Study Time
## 3197 2.95 9.6 6.4 Increase Study Time
## 3198 1.31 7.2 4.9 Increase Study Time
## 3199 7.18 5.6 3.2 Improve Sleep
## 3200 4.35 8.3 6.2 Reduce Stress
## 3201 2.62 8.5 5.3 Increase Study Time
## 3202 3.53 5.2 2.3 Improve Sleep
## 3203 5.11 8.8 3.3 Good Performance Habit
## 3204 4.10 7.1 4.8 Good Performance Habit
## 3205 2.97 8.7 2.2 Increase Study Time
## 3206 5.73 6.2 4.3 Good Performance Habit
## 3207 2.97 8.5 5.3 Increase Study Time
## 3208 3.94 5.5 6.2 Improve Sleep
## 3209 5.05 5.6 6.7 Improve Sleep
## 3210 3.27 6.5 5.8 Reduce Screen Time
## 3211 4.86 6.2 2.4 Good Performance Habit
## 3212 3.43 5.4 4.7 Improve Sleep
## 3213 9.96 6.1 5.1 Good Performance Habit
## 3214 3.88 5.8 2.8 Improve Sleep
## 3215 6.05 6.0 5.5 Good Performance Habit
## 3216 2.99 6.4 6.7 Increase Study Time
## 3217 2.47 6.3 2.4 Increase Study Time
## 3218 4.43 8.3 7.6 Reduce Stress
## 3219 3.99 5.9 7.4 Improve Sleep
## 3220 4.00 7.9 7.3 Reduce Stress
## 3221 4.60 7.8 6.2 Reduce Stress
## 3222 6.41 8.0 6.6 Reduce Stress
## 3223 8.44 7.0 5.2 Good Performance Habit
## 3224 8.64 6.2 6.3 Reduce Stress
## 3225 4.77 5.5 6.2 Improve Sleep
## 3226 8.27 8.2 4.1 Good Performance Habit
## 3227 8.01 7.1 3.4 Good Performance Habit
## 3228 3.40 6.4 7.5 Reduce Stress
## 3229 3.67 5.2 3.4 Improve Sleep
## 3230 4.42 7.7 6.2 Reduce Stress
## 3231 8.49 7.8 5.4 Good Performance Habit
## 3232 4.32 7.2 3.5 Good Performance Habit
## 3233 4.12 5.4 4.7 Improve Sleep
## 3234 7.34 7.8 5.3 Reduce Screen Time
## 3235 4.23 7.8 1.7 Reduce Screen Time
## 3236 4.28 5.2 8.2 Improve Sleep
## 3237 5.76 7.8 3.9 Reduce Screen Time
## 3238 4.92 8.1 5.5 Good Performance Habit
## 3239 0.64 7.0 4.0 Increase Study Time
## 3240 2.10 5.8 5.9 Increase Study Time
## 3241 5.96 8.9 6.2 Reduce Stress
## 3242 1.72 5.6 3.1 Increase Study Time
## 3243 6.98 7.6 5.5 Good Performance Habit
## 3244 4.41 8.1 4.6 Reduce Screen Time
## 3245 5.05 7.5 2.5 Good Performance Habit
## 3246 5.10 3.9 6.5 Improve Sleep
## 3247 1.00 6.3 6.0 Increase Study Time
## 3248 3.14 6.6 2.3 Reduce Screen Time
## 3249 2.47 6.1 6.9 Increase Study Time
## 3250 5.02 8.4 2.5 Good Performance Habit
## 3251 7.57 6.7 5.8 Good Performance Habit
## 3252 4.10 8.8 8.5 Reduce Stress
## 3253 4.69 7.3 3.6 Reduce Screen Time
## 3254 0.68 3.7 4.4 Increase Study Time
## 3255 3.81 5.3 7.0 Improve Sleep
## 3256 4.07 8.8 7.8 Reduce Stress
## 3257 4.18 4.7 3.0 Improve Sleep
## 3258 5.74 8.2 2.7 Good Performance Habit
## 3259 7.33 7.7 2.7 Reduce Screen Time
## 3260 4.52 8.8 6.0 Good Performance Habit
## 3261 5.33 8.1 4.5 Good Performance Habit
## 3262 1.47 6.7 4.6 Increase Study Time
## 3263 5.76 7.6 5.5 Good Performance Habit
## 3264 4.63 7.2 6.7 Reduce Stress
## 3265 1.10 7.7 1.0 Increase Study Time
## 3266 5.23 5.5 7.6 Improve Sleep
## 3267 3.26 7.4 4.2 Reduce Screen Time
## 3268 6.56 9.6 4.9 Reduce Screen Time
## 3269 5.47 7.1 5.8 Good Performance Habit
## 3270 4.73 6.9 6.6 Reduce Stress
## 3271 7.96 7.6 4.8 Reduce Screen Time
## 3272 4.25 8.5 8.8 Reduce Stress
## 3273 3.96 5.8 4.0 Improve Sleep
## 3274 4.64 5.7 3.8 Improve Sleep
## 3275 4.81 7.8 6.8 Reduce Stress
## 3276 2.89 7.2 7.9 Increase Study Time
## 3277 5.71 7.0 1.6 Good Performance Habit
## 3278 5.42 7.0 7.6 Reduce Stress
## 3279 3.55 5.0 3.2 Improve Sleep
## 3280 1.51 6.1 6.3 Increase Study Time
## 3281 7.00 7.4 4.8 Good Performance Habit
## 3282 7.23 8.3 3.3 Reduce Screen Time
## 3283 6.42 7.1 5.3 Good Performance Habit
## 3284 6.61 7.8 3.7 Good Performance Habit
## 3285 8.23 7.6 7.1 Reduce Stress
## 3286 5.35 6.2 1.6 Reduce Screen Time
## 3287 7.95 5.5 4.6 Improve Sleep
## 3288 4.44 8.1 4.7 Good Performance Habit
## 3289 3.03 6.0 4.9 Good Performance Habit
## 3290 4.80 5.6 3.5 Improve Sleep
## 3291 4.16 6.5 4.5 Reduce Screen Time
## 3292 5.76 4.5 6.4 Improve Sleep
## 3293 8.39 5.7 4.4 Improve Sleep
## 3294 5.64 5.6 2.9 Improve Sleep
## 3295 6.89 8.4 7.7 Reduce Stress
## 3296 9.05 6.6 2.1 Good Performance Habit
## 3297 8.40 7.2 3.3 Good Performance Habit
## 3298 5.02 7.6 5.2 Good Performance Habit
## 3299 3.51 7.6 3.4 Good Performance Habit
## 3300 9.07 8.8 2.9 Reduce Screen Time
## 3301 2.71 7.1 3.3 Increase Study Time
## 3302 1.23 7.9 7.4 Increase Study Time
## 3303 0.89 6.0 8.1 Increase Study Time
## 3304 7.18 6.2 4.4 Good Performance Habit
## 3305 1.93 7.2 5.0 Increase Study Time
## 3306 4.35 6.3 7.6 Reduce Stress
## 3307 4.60 7.1 3.6 Good Performance Habit
## 3308 7.46 6.4 3.2 Good Performance Habit
## 3309 2.13 7.6 1.9 Increase Study Time
## 3310 4.97 6.9 6.3 Reduce Stress
## 3311 5.46 6.3 3.0 Good Performance Habit
## 3312 7.67 6.9 2.4 Reduce Screen Time
## 3313 4.39 6.8 5.9 Good Performance Habit
## 3314 5.41 7.7 7.1 Reduce Stress
## 3315 4.32 7.9 5.7 Good Performance Habit
## 3316 7.05 5.6 1.5 Improve Sleep
## 3317 6.75 8.4 1.9 Good Performance Habit
## 3318 4.11 6.8 2.7 Good Performance Habit
## 3319 5.97 6.5 4.6 Reduce Screen Time
## 3320 1.93 7.4 5.5 Increase Study Time
## 3321 5.02 8.0 2.3 Good Performance Habit
## 3322 3.12 6.4 8.7 Reduce Stress
## 3323 4.06 6.8 5.5 Good Performance Habit
## 3324 6.90 5.5 8.6 Improve Sleep
## 3325 9.18 7.8 7.1 Reduce Stress
## 3326 5.31 7.3 5.4 Good Performance Habit
## 3327 4.62 7.3 6.5 Reduce Stress
## 3328 4.24 6.7 6.8 Reduce Stress
## 3329 6.40 7.2 4.6 Reduce Screen Time
## 3330 4.55 4.9 2.6 Improve Sleep
## 3331 6.87 7.0 4.4 Reduce Screen Time
## 3332 7.98 9.3 6.2 Reduce Stress
## 3333 6.16 5.9 6.9 Improve Sleep
## 3334 4.15 7.6 2.9 Reduce Screen Time
## 3335 6.44 3.5 4.2 Improve Sleep
## 3336 3.54 7.1 4.0 Good Performance Habit
## 3337 1.41 6.0 4.2 Increase Study Time
## 3338 7.20 7.5 3.9 Reduce Screen Time
## 3339 8.75 5.0 7.4 Improve Sleep
## 3340 7.56 5.9 5.1 Improve Sleep
## 3341 4.20 6.0 7.4 Reduce Stress
## 3342 0.79 7.0 4.9 Increase Study Time
## 3343 3.46 7.6 4.5 Good Performance Habit
## 3344 6.16 6.4 4.2 Good Performance Habit
## 3345 4.12 6.6 7.7 Reduce Stress
## 3346 7.69 6.7 4.0 Good Performance Habit
## 3347 3.28 8.4 3.6 Good Performance Habit
## 3348 5.89 6.6 5.9 Good Performance Habit
## 3349 5.35 8.0 2.0 Good Performance Habit
## 3350 5.42 6.7 4.4 Good Performance Habit
## 3351 2.09 6.8 7.7 Increase Study Time
## 3352 4.69 6.4 5.5 Good Performance Habit
## 3353 5.42 7.1 4.6 Reduce Screen Time
## 3354 4.09 5.7 7.5 Improve Sleep
## 3355 2.27 6.3 1.7 Increase Study Time
## 3356 3.91 6.7 7.5 Reduce Stress
## 3357 2.97 6.9 2.6 Increase Study Time
## 3358 5.57 8.1 3.4 Good Performance Habit
## 3359 6.82 6.8 7.7 Reduce Stress
## 3360 5.53 7.7 3.4 Reduce Screen Time
## 3361 5.62 9.0 4.7 Reduce Screen Time
## 3362 4.52 7.2 2.2 Good Performance Habit
## 3363 5.26 6.4 5.3 Good Performance Habit
## 3364 0.97 6.2 5.3 Increase Study Time
## 3365 5.02 9.7 4.6 Reduce Screen Time
## 3366 6.65 5.1 6.6 Improve Sleep
## 3367 3.81 7.4 4.4 Good Performance Habit
## 3368 6.25 6.7 5.8 Reduce Screen Time
## 3369 1.85 8.7 4.2 Increase Study Time
## 3370 4.96 7.4 7.0 Reduce Stress
## 3371 4.48 6.9 1.0 Reduce Screen Time
## 3372 5.79 5.9 4.2 Improve Sleep
## 3373 5.15 5.8 5.0 Improve Sleep
## 3374 9.31 6.6 4.4 Good Performance Habit
## 3375 0.87 5.8 4.7 Increase Study Time
## 3376 1.95 8.6 6.1 Increase Study Time
## 3377 3.50 5.7 9.6 Improve Sleep
## 3378 5.04 8.8 6.4 Reduce Stress
## 3379 3.56 6.6 2.6 Reduce Screen Time
## 3380 3.50 8.6 3.2 Good Performance Habit
## 3381 1.69 7.3 4.7 Increase Study Time
## 3382 2.12 6.3 5.9 Increase Study Time
## 3383 3.10 7.4 4.0 Good Performance Habit
## 3384 7.89 7.4 5.3 Reduce Screen Time
## 3385 3.22 8.5 3.2 Good Performance Habit
## 3386 10.38 5.1 2.7 Improve Sleep
## 3387 6.99 7.2 4.5 Reduce Screen Time
## 3388 4.27 8.7 7.4 Reduce Stress
## 3389 6.49 8.8 2.9 Good Performance Habit
## 3390 6.90 5.6 3.3 Improve Sleep
## 3391 2.44 8.1 6.6 Increase Study Time
## 3392 1.59 8.4 5.8 Increase Study Time
## 3393 7.80 8.7 5.0 Good Performance Habit
## 3394 2.93 8.2 8.5 Increase Study Time
## 3395 6.59 7.0 4.7 Good Performance Habit
## 3396 6.22 6.0 5.6 Good Performance Habit
## 3397 1.50 6.6 5.7 Increase Study Time
## 3398 6.15 5.0 7.0 Improve Sleep
## 3399 5.99 8.4 10.0 Reduce Stress
## 3400 7.43 7.2 3.6 Good Performance Habit
## 3401 4.79 7.7 7.9 Reduce Stress
## 3402 5.77 9.2 6.0 Good Performance Habit
## 3403 5.62 7.7 2.0 Good Performance Habit
## 3404 4.38 6.1 4.8 Good Performance Habit
## 3405 8.15 5.6 4.8 Improve Sleep
## 3406 6.80 5.9 4.8 Improve Sleep
## 3407 7.95 7.3 3.0 Good Performance Habit
## 3408 5.57 6.7 6.2 Reduce Stress
## 3409 7.20 7.4 4.6 Good Performance Habit
## 3410 2.94 6.1 3.9 Increase Study Time
## 3411 3.61 8.2 4.7 Reduce Screen Time
## 3412 6.87 4.5 6.5 Improve Sleep
## 3413 4.40 5.9 4.8 Improve Sleep
## 3414 4.06 9.7 6.9 Reduce Stress
## 3415 5.17 8.0 7.0 Reduce Stress
## 3416 1.68 8.2 6.0 Increase Study Time
## 3417 5.19 7.5 7.1 Reduce Stress
## 3418 5.84 7.8 9.5 Reduce Stress
## 3419 4.21 6.5 2.1 Good Performance Habit
## 3420 2.60 6.1 7.2 Increase Study Time
## 3421 8.38 8.9 4.1 Reduce Screen Time
## 3422 5.71 5.7 5.3 Improve Sleep
## 3423 2.79 8.5 5.3 Increase Study Time
## 3424 3.67 4.4 2.2 Improve Sleep
## 3425 1.60 6.7 6.4 Increase Study Time
## 3426 1.35 6.7 2.8 Increase Study Time
## 3427 1.01 6.0 3.7 Increase Study Time
## 3428 3.18 5.6 6.7 Improve Sleep
## 3429 5.70 7.2 6.3 Reduce Stress
## 3430 6.34 8.0 7.1 Reduce Stress
## 3431 4.62 6.0 5.6 Good Performance Habit
## 3432 6.91 7.6 4.8 Good Performance Habit
## 3433 5.99 5.8 6.0 Improve Sleep
## 3434 2.54 6.6 5.3 Increase Study Time
## 3435 3.16 7.0 6.2 Reduce Stress
## 3436 5.43 9.3 6.8 Reduce Stress
## 3437 6.22 7.9 5.7 Good Performance Habit
## 3438 7.03 6.0 4.3 Good Performance Habit
## 3439 2.09 7.6 2.4 Increase Study Time
## 3440 0.95 5.3 5.6 Increase Study Time
## 3441 8.91 6.3 3.2 Good Performance Habit
## 3442 4.30 8.7 3.5 Good Performance Habit
## 3443 6.87 7.4 5.9 Good Performance Habit
## 3444 4.94 8.0 5.6 Good Performance Habit
## 3445 2.09 7.2 4.2 Increase Study Time
## 3446 7.69 4.7 7.9 Improve Sleep
## 3447 5.82 6.9 1.7 Good Performance Habit
## 3448 7.85 8.5 2.5 Good Performance Habit
## 3449 6.10 6.7 5.6 Good Performance Habit
## 3450 2.90 7.9 6.6 Increase Study Time
## 3451 4.81 7.5 7.1 Reduce Stress
## 3452 6.90 6.6 7.5 Reduce Stress
## 3453 3.51 5.4 4.6 Improve Sleep
## 3454 5.28 9.2 8.8 Reduce Stress
## 3455 7.24 6.4 3.6 Reduce Screen Time
## 3456 2.42 8.2 6.6 Increase Study Time
## 3457 4.16 5.7 3.7 Improve Sleep
## 3458 5.26 7.8 6.2 Reduce Stress
## 3459 6.84 5.1 4.8 Improve Sleep
## 3460 4.72 7.6 3.9 Good Performance Habit
## 3461 3.48 6.2 8.7 Reduce Stress
## 3462 6.04 5.8 1.1 Improve Sleep
## 3463 3.69 7.0 7.0 Reduce Stress
## 3464 5.76 7.5 3.7 Good Performance Habit
## 3465 5.64 9.1 4.5 Good Performance Habit
## 3466 4.53 7.2 6.3 Reduce Stress
## 3467 6.65 8.0 7.0 Reduce Stress
## 3468 7.30 5.7 9.4 Improve Sleep
## 3469 2.31 6.8 5.1 Increase Study Time
## 3470 5.97 7.9 4.0 Good Performance Habit
## 3471 4.60 8.4 2.9 Good Performance Habit
## 3472 4.33 8.3 4.3 Reduce Screen Time
## 3473 5.11 8.0 2.9 Reduce Screen Time
## 3474 7.30 6.0 4.9 Good Performance Habit
## 3475 4.65 8.2 7.3 Reduce Stress
## 3476 4.30 7.8 3.9 Good Performance Habit
## 3477 2.43 5.7 5.5 Increase Study Time
## 3478 4.61 5.4 6.9 Improve Sleep
## 3479 4.95 6.3 5.6 Good Performance Habit
## 3480 3.04 7.0 3.1 Good Performance Habit
## 3481 4.34 6.9 5.6 Reduce Screen Time
## 3482 5.92 5.6 7.4 Improve Sleep
## 3483 7.75 5.7 6.0 Improve Sleep
## 3484 4.40 5.4 5.8 Improve Sleep
## 3485 8.97 7.5 5.0 Good Performance Habit
## 3486 6.98 8.7 6.0 Good Performance Habit
## 3487 6.72 10.0 4.5 Good Performance Habit
## 3488 6.18 7.8 3.9 Good Performance Habit
## 3489 5.20 6.6 8.3 Reduce Stress
## 3490 3.75 7.4 3.0 Reduce Screen Time
## 3491 4.88 7.5 5.2 Reduce Screen Time
## 3492 5.14 6.3 3.7 Reduce Screen Time
## 3493 5.34 6.9 2.9 Reduce Screen Time
## 3494 8.11 5.8 7.6 Improve Sleep
## 3495 9.04 8.2 3.8 Good Performance Habit
## 3496 6.12 6.2 9.0 Reduce Stress
## 3497 7.05 7.6 5.7 Good Performance Habit
## 3498 3.68 8.0 3.4 Good Performance Habit
## 3499 1.08 5.4 4.3 Increase Study Time
## 3500 4.86 6.0 4.8 Good Performance Habit
## 3501 5.56 7.4 4.5 Good Performance Habit
## 3502 7.88 7.3 6.1 Reduce Stress
## 3503 9.91 6.2 4.6 Good Performance Habit
## 3504 5.61 7.8 7.0 Reduce Stress
## 3505 7.69 8.4 4.3 Good Performance Habit
## 3506 7.31 7.3 4.7 Reduce Screen Time
## 3507 5.52 6.4 5.5 Reduce Screen Time
## 3508 6.75 8.7 3.4 Good Performance Habit
## 3509 5.86 6.4 2.8 Reduce Screen Time
## 3510 8.20 6.5 5.7 Good Performance Habit
## 3511 2.99 8.3 7.3 Increase Study Time
## 3512 0.47 7.5 3.8 Increase Study Time
## 3513 5.37 5.2 5.1 Improve Sleep
## 3514 6.96 7.2 8.3 Reduce Stress
## 3515 7.21 9.7 5.1 Good Performance Habit
## 3516 3.98 5.8 5.0 Improve Sleep
## 3517 6.21 7.4 3.8 Reduce Screen Time
## 3518 3.81 3.8 6.6 Improve Sleep
## 3519 6.48 6.0 5.7 Reduce Screen Time
## 3520 3.63 7.2 3.1 Good Performance Habit
## 3521 2.97 7.7 6.6 Increase Study Time
## 3522 7.01 10.0 5.8 Good Performance Habit
## 3523 2.62 7.9 6.4 Increase Study Time
## 3524 2.18 6.9 5.1 Increase Study Time
## 3525 6.71 9.3 6.4 Reduce Stress
## 3526 5.33 6.9 6.9 Reduce Stress
## 3527 0.50 7.4 4.7 Increase Study Time
## 3528 7.49 8.3 5.1 Good Performance Habit
## 3529 2.67 7.5 5.8 Increase Study Time
## 3530 4.22 6.1 3.8 Good Performance Habit
## 3531 4.90 8.3 3.4 Reduce Screen Time
## 3532 9.15 6.8 1.5 Reduce Screen Time
## 3533 5.08 7.0 5.5 Good Performance Habit
## 3534 6.94 7.5 3.2 Reduce Screen Time
## 3535 4.85 6.1 4.8 Reduce Screen Time
## 3536 6.15 7.1 2.9 Good Performance Habit
## 3537 2.31 7.6 7.4 Increase Study Time
## 3538 5.13 9.3 9.9 Reduce Stress
## 3539 3.91 6.6 8.8 Reduce Stress
## 3540 3.10 6.8 5.6 Reduce Screen Time
## 3541 5.72 8.3 6.9 Reduce Stress
## 3542 7.21 7.0 6.7 Reduce Stress
## 3543 6.08 6.5 7.4 Reduce Stress
## 3544 4.50 7.4 1.9 Good Performance Habit
## 3545 6.60 6.0 9.2 Reduce Stress
## 3546 2.91 6.5 3.5 Increase Study Time
## 3547 5.77 6.9 1.9 Reduce Screen Time
## 3548 6.17 6.3 1.9 Good Performance Habit
## 3549 4.95 6.4 6.7 Reduce Stress
## 3550 4.62 8.6 4.7 Reduce Screen Time
## 3551 5.37 4.7 4.3 Improve Sleep
## 3552 4.00 6.9 5.0 Good Performance Habit
## 3553 4.69 6.7 7.9 Reduce Stress
## 3554 6.60 8.4 6.5 Reduce Stress
## 3555 1.29 7.4 8.7 Increase Study Time
## 3556 7.62 7.7 5.1 Good Performance Habit
## 3557 6.04 8.3 7.2 Reduce Stress
## 3558 5.56 7.9 5.7 Reduce Screen Time
## 3559 3.12 5.7 8.0 Improve Sleep
## 3560 4.30 6.1 3.5 Good Performance Habit
## 3561 3.93 7.3 7.6 Reduce Stress
## 3562 6.48 8.1 10.0 Reduce Stress
## 3563 6.38 6.8 4.9 Reduce Screen Time
## 3564 7.42 6.6 5.4 Good Performance Habit
## 3565 5.23 7.6 3.0 Good Performance Habit
## 3566 1.07 8.7 5.0 Increase Study Time
## 3567 3.18 7.2 4.6 Good Performance Habit
## 3568 4.37 8.2 4.5 Good Performance Habit
## 3569 5.76 8.7 6.6 Reduce Stress
## 3570 2.10 8.0 5.0 Increase Study Time
## 3571 4.69 7.5 5.7 Reduce Screen Time
## 3572 5.21 7.8 7.7 Reduce Stress
## 3573 3.89 7.1 4.0 Good Performance Habit
## 3574 4.70 10.0 7.9 Reduce Stress
## 3575 9.61 6.7 3.1 Good Performance Habit
## 3576 5.03 6.4 1.8 Good Performance Habit
## 3577 9.01 6.9 4.2 Good Performance Habit
## 3578 5.54 6.8 3.6 Good Performance Habit
## 3579 3.65 6.6 4.8 Reduce Screen Time
## 3580 6.16 9.2 8.3 Reduce Stress
## 3581 4.24 8.7 2.8 Good Performance Habit
## 3582 4.93 5.9 1.7 Improve Sleep
## 3583 0.59 7.0 6.3 Increase Study Time
## 3584 5.74 7.0 8.9 Reduce Stress
## 3585 3.88 4.2 2.2 Improve Sleep
## 3586 7.29 6.6 4.8 Good Performance Habit
## 3587 5.26 7.2 5.4 Reduce Screen Time
## 3588 4.28 7.2 1.0 Good Performance Habit
## 3589 2.95 6.4 6.3 Increase Study Time
## 3590 5.07 7.7 5.9 Good Performance Habit
## 3591 4.28 4.2 4.5 Improve Sleep
## 3592 3.48 6.2 5.4 Good Performance Habit
## 3593 8.74 9.0 1.0 Good Performance Habit
## 3594 4.73 5.8 4.4 Improve Sleep
## 3595 6.80 6.6 5.6 Good Performance Habit
## 3596 7.94 9.5 3.1 Good Performance Habit
## 3597 5.82 6.5 3.6 Good Performance Habit
## 3598 6.26 5.9 6.1 Improve Sleep
## 3599 6.02 8.7 8.8 Reduce Stress
## 3600 6.92 8.2 8.0 Reduce Stress
## 3601 6.15 8.8 7.4 Reduce Stress
## 3602 6.01 7.2 5.8 Good Performance Habit
## 3603 5.29 7.1 4.4 Good Performance Habit
## 3604 4.05 4.7 2.7 Improve Sleep
## 3605 4.15 6.6 4.7 Reduce Screen Time
## 3606 3.74 8.8 2.4 Good Performance Habit
## 3607 5.39 8.0 3.8 Good Performance Habit
## 3608 7.61 6.6 4.5 Reduce Screen Time
## 3609 3.13 6.6 5.1 Good Performance Habit
## 3610 3.80 9.4 4.9 Good Performance Habit
## 3611 3.06 7.4 5.9 Good Performance Habit
## 3612 4.89 7.0 6.0 Good Performance Habit
## 3613 7.03 8.0 3.0 Good Performance Habit
## 3614 4.34 7.7 1.9 Good Performance Habit
## 3615 5.61 6.7 5.3 Good Performance Habit
## 3616 0.40 5.1 1.4 Increase Study Time
## 3617 4.71 8.3 3.2 Good Performance Habit
## 3618 5.96 7.1 2.4 Reduce Screen Time
## 3619 3.78 5.2 5.1 Improve Sleep
## 3620 1.77 9.7 4.6 Increase Study Time
## 3621 5.91 8.2 5.4 Good Performance Habit
## 3622 4.78 5.6 6.6 Improve Sleep
## 3623 8.58 7.8 4.3 Good Performance Habit
## 3624 3.85 6.3 6.0 Good Performance Habit
## 3625 4.69 6.7 6.5 Reduce Stress
## 3626 4.24 6.5 7.0 Reduce Stress
## 3627 5.20 6.8 1.0 Reduce Screen Time
## 3628 1.39 6.6 3.0 Increase Study Time
## 3629 7.68 10.0 7.0 Reduce Stress
## 3630 6.26 8.9 7.4 Reduce Stress
## 3631 4.54 5.0 1.7 Improve Sleep
## 3632 4.28 8.3 4.3 Good Performance Habit
## 3633 6.02 6.7 4.5 Reduce Screen Time
## 3634 5.71 6.4 4.1 Good Performance Habit
## 3635 4.17 6.5 6.2 Reduce Stress
## 3636 4.67 8.0 6.4 Reduce Stress
## 3637 5.68 5.7 6.8 Improve Sleep
## 3638 4.16 8.3 8.4 Reduce Stress
## 3639 4.35 7.1 7.7 Reduce Stress
## 3640 4.16 8.9 6.6 Reduce Stress
## 3641 4.29 7.2 6.6 Reduce Stress
## 3642 2.43 8.3 7.0 Increase Study Time
## 3643 3.14 3.4 4.7 Improve Sleep
## 3644 5.73 7.1 3.3 Good Performance Habit
## 3645 6.56 7.2 4.3 Reduce Screen Time
## 3646 4.90 6.0 6.1 Reduce Stress
## 3647 0.96 7.9 4.7 Increase Study Time
## 3648 2.07 9.3 4.4 Increase Study Time
## 3649 5.81 5.6 4.1 Improve Sleep
## 3650 8.33 5.6 3.8 Improve Sleep
## 3651 7.39 7.8 3.4 Good Performance Habit
## 3652 4.60 6.6 3.6 Reduce Screen Time
## 3653 4.31 9.3 2.6 Good Performance Habit
## 3654 4.15 7.3 4.6 Good Performance Habit
## 3655 8.43 8.3 8.2 Reduce Stress
## 3656 5.47 5.3 4.8 Improve Sleep
## 3657 3.19 7.3 8.2 Reduce Stress
## 3658 6.88 6.8 5.4 Reduce Screen Time
## 3659 6.65 7.8 4.1 Good Performance Habit
## 3660 1.03 8.3 5.2 Increase Study Time
## 3661 3.77 6.5 8.3 Reduce Stress
## 3662 7.00 5.8 7.8 Improve Sleep
## 3663 6.81 5.4 4.0 Improve Sleep
## 3664 2.56 8.5 5.9 Increase Study Time
## 3665 5.01 6.0 7.7 Reduce Stress
## 3666 6.75 8.2 6.0 Good Performance Habit
## 3667 5.70 6.6 4.1 Good Performance Habit
## 3668 2.95 7.4 2.6 Increase Study Time
## 3669 4.66 6.6 3.4 Reduce Screen Time
## 3670 6.33 7.2 1.7 Good Performance Habit
## 3671 5.99 5.9 1.9 Improve Sleep
## 3672 3.13 5.7 4.7 Improve Sleep
## 3673 9.65 8.6 4.1 Reduce Screen Time
## 3674 5.47 7.6 7.9 Reduce Stress
## 3675 2.07 5.3 5.4 Increase Study Time
## 3676 4.38 6.3 8.0 Reduce Stress
## 3677 1.29 6.9 6.1 Increase Study Time
## 3678 3.68 6.4 6.9 Reduce Stress
## 3679 4.96 7.6 8.0 Reduce Stress
## 3680 9.79 8.2 5.2 Good Performance Habit
## 3681 5.43 7.8 3.6 Good Performance Habit
## 3682 5.77 5.3 4.0 Improve Sleep
## 3683 6.55 4.4 5.4 Improve Sleep
## 3684 5.46 7.0 10.0 Reduce Stress
## 3685 3.87 7.3 5.2 Good Performance Habit
## 3686 7.73 7.4 3.1 Good Performance Habit
## 3687 6.08 6.7 6.0 Good Performance Habit
## 3688 8.10 5.9 6.8 Improve Sleep
## 3689 7.09 6.4 4.3 Good Performance Habit
## 3690 3.22 6.3 6.3 Reduce Stress
## 3691 4.16 8.1 2.4 Good Performance Habit
## 3692 4.27 7.0 4.8 Good Performance Habit
## 3693 4.31 7.3 8.0 Reduce Stress
## 3694 5.95 6.6 4.4 Reduce Screen Time
## 3695 4.72 8.0 2.8 Good Performance Habit
## 3696 3.51 8.4 1.7 Good Performance Habit
## 3697 7.96 6.3 2.1 Reduce Screen Time
## 3698 7.75 6.2 7.4 Reduce Stress
## 3699 5.15 6.8 4.5 Good Performance Habit
## 3700 3.00 7.1 9.8 Reduce Stress
## 3701 3.86 7.9 7.3 Reduce Stress
## 3702 3.60 6.8 8.7 Reduce Stress
## 3703 3.33 6.9 1.0 Good Performance Habit
## 3704 3.17 9.5 6.4 Reduce Stress
## 3705 5.55 8.7 7.4 Reduce Stress
## 3706 5.67 10.0 5.4 Good Performance Habit
## 3707 5.93 6.2 5.1 Reduce Screen Time
## 3708 3.26 7.3 3.1 Good Performance Habit
## 3709 5.67 6.6 2.4 Good Performance Habit
## 3710 8.99 6.9 5.7 Good Performance Habit
## 3711 5.55 5.4 5.2 Improve Sleep
## 3712 4.32 5.3 4.9 Improve Sleep
## 3713 10.44 6.9 5.4 Good Performance Habit
## 3714 5.71 6.7 4.7 Good Performance Habit
## 3715 3.87 6.4 4.4 Reduce Screen Time
## 3716 6.82 7.0 1.4 Good Performance Habit
## 3717 3.70 5.5 7.9 Improve Sleep
## 3718 4.39 6.0 8.1 Reduce Stress
## 3719 7.07 7.4 5.5 Good Performance Habit
## 3720 3.90 7.2 8.6 Reduce Stress
## 3721 2.19 6.3 5.3 Increase Study Time
## 3722 6.48 10.0 4.6 Good Performance Habit
## 3723 6.74 9.2 4.4 Good Performance Habit
## 3724 2.40 7.4 4.6 Increase Study Time
## 3725 4.42 5.9 5.9 Improve Sleep
## 3726 7.23 4.8 6.8 Improve Sleep
## 3727 5.59 6.1 5.6 Good Performance Habit
## 3728 6.74 7.7 4.6 Good Performance Habit
## 3729 4.88 5.9 5.5 Improve Sleep
## 3730 3.87 8.2 4.4 Good Performance Habit
## 3731 4.02 7.2 2.0 Reduce Screen Time
## 3732 4.51 6.8 4.1 Good Performance Habit
## 3733 5.47 6.6 5.8 Reduce Screen Time
## 3734 0.70 7.0 5.2 Increase Study Time
## 3735 1.38 4.9 7.4 Increase Study Time
## 3736 5.14 5.9 4.2 Improve Sleep
## 3737 6.44 7.7 7.1 Reduce Stress
## 3738 3.84 6.3 5.2 Good Performance Habit
## 3739 5.15 6.1 5.5 Reduce Screen Time
## 3740 3.03 5.9 7.7 Improve Sleep
## 3741 2.44 8.1 3.1 Increase Study Time
## 3742 5.45 7.7 3.4 Good Performance Habit
## 3743 5.00 6.2 7.5 Reduce Stress
## 3744 4.14 9.0 7.1 Reduce Stress
## 3745 2.59 7.1 6.5 Increase Study Time
## 3746 5.28 8.0 3.8 Good Performance Habit
## 3747 5.02 7.1 1.0 Good Performance Habit
## 3748 4.64 7.2 3.1 Good Performance Habit
## 3749 4.90 6.6 1.9 Good Performance Habit
## 3750 4.41 6.2 6.3 Reduce Stress
## 3751 6.15 6.3 3.5 Good Performance Habit
## 3752 5.90 6.5 1.2 Reduce Screen Time
## 3753 8.60 6.2 6.5 Reduce Stress
## 3754 7.86 7.5 3.5 Good Performance Habit
## 3755 5.03 5.5 5.6 Improve Sleep
## 3756 2.72 7.0 5.9 Increase Study Time
## 3757 6.34 5.4 6.6 Improve Sleep
## 3758 3.93 9.9 8.2 Reduce Stress
## 3759 8.06 6.7 3.8 Good Performance Habit
## 3760 2.20 6.9 2.2 Increase Study Time
## 3761 4.26 8.4 5.4 Good Performance Habit
## 3762 8.09 6.7 3.1 Good Performance Habit
## 3763 5.10 6.2 3.3 Good Performance Habit
## 3764 6.50 7.3 3.6 Good Performance Habit
## 3765 6.37 8.1 7.7 Reduce Stress
## 3766 4.13 7.9 6.7 Reduce Stress
## 3767 6.72 8.2 3.6 Good Performance Habit
## 3768 3.39 6.9 7.5 Reduce Stress
## 3769 4.45 8.1 8.2 Reduce Stress
## 3770 9.20 6.2 6.5 Reduce Stress
## 3771 4.72 7.9 5.4 Good Performance Habit
## 3772 5.79 7.9 6.3 Reduce Stress
## 3773 2.99 9.5 4.6 Increase Study Time
## 3774 7.68 6.1 3.7 Good Performance Habit
## 3775 3.28 9.1 4.8 Reduce Screen Time
## 3776 3.63 7.9 4.3 Good Performance Habit
## 3777 3.90 6.9 4.8 Good Performance Habit
## 3778 3.23 7.1 6.4 Reduce Stress
## 3779 2.30 8.8 6.7 Increase Study Time
## 3780 4.49 6.1 3.7 Good Performance Habit
## 3781 4.11 7.5 7.7 Reduce Stress
## 3782 4.86 9.5 2.9 Good Performance Habit
## 3783 3.14 5.5 4.3 Improve Sleep
## 3784 3.29 6.0 5.4 Good Performance Habit
## 3785 4.42 5.7 4.1 Improve Sleep
## 3786 5.04 7.5 7.2 Reduce Stress
## 3787 3.24 4.8 1.2 Improve Sleep
## 3788 4.97 9.4 9.5 Reduce Stress
## 3789 4.58 7.6 3.0 Reduce Screen Time
## 3790 7.08 8.7 6.4 Reduce Stress
## 3791 6.26 6.9 7.5 Reduce Stress
## 3792 6.01 6.9 2.3 Good Performance Habit
## 3793 6.99 5.6 5.2 Improve Sleep
## 3794 3.80 7.4 6.6 Reduce Stress
## 3795 7.66 7.0 2.4 Good Performance Habit
## 3796 5.39 7.4 3.2 Good Performance Habit
## 3797 4.07 4.9 5.6 Improve Sleep
## 3798 5.81 6.1 2.7 Reduce Screen Time
## 3799 2.95 7.2 5.0 Increase Study Time
## 3800 8.48 6.9 4.0 Good Performance Habit
## 3801 5.52 6.7 5.2 Reduce Screen Time
## 3802 2.13 7.1 3.1 Increase Study Time
## 3803 2.84 5.3 1.0 Increase Study Time
## 3804 4.04 7.5 3.3 Good Performance Habit
## 3805 3.94 6.2 5.2 Good Performance Habit
## 3806 5.90 8.7 5.0 Good Performance Habit
## 3807 6.74 7.1 5.4 Good Performance Habit
## 3808 7.00 8.3 2.9 Good Performance Habit
## 3809 6.08 6.8 1.0 Good Performance Habit
## 3810 3.21 7.4 5.2 Good Performance Habit
## 3811 7.20 6.5 4.7 Good Performance Habit
## 3812 7.41 6.4 5.3 Good Performance Habit
## 3813 1.26 5.7 2.3 Increase Study Time
## 3814 3.92 6.9 5.0 Good Performance Habit
## 3815 4.33 8.2 3.1 Good Performance Habit
## 3816 3.51 7.4 9.1 Reduce Stress
## 3817 7.04 6.2 1.8 Good Performance Habit
## 3818 5.91 6.7 7.0 Reduce Stress
## 3819 5.13 6.8 2.7 Good Performance Habit
## 3820 2.65 5.4 4.8 Increase Study Time
## 3821 1.03 6.6 5.0 Increase Study Time
## 3822 3.20 6.2 6.4 Reduce Stress
## 3823 3.40 10.0 6.7 Reduce Stress
## 3824 3.26 6.4 5.4 Good Performance Habit
## 3825 0.89 7.9 3.0 Increase Study Time
## 3826 2.03 6.3 5.2 Increase Study Time
## 3827 4.16 6.4 4.8 Good Performance Habit
## 3828 5.64 6.9 3.7 Good Performance Habit
## 3829 3.96 6.8 4.8 Reduce Screen Time
## 3830 4.53 5.2 7.7 Improve Sleep
## 3831 4.84 5.4 5.2 Improve Sleep
## 3832 4.85 7.9 3.4 Good Performance Habit
## 3833 7.31 5.8 7.6 Improve Sleep
## 3834 3.43 8.2 8.8 Reduce Stress
## 3835 5.38 6.1 8.2 Reduce Stress
## 3836 2.41 6.9 5.1 Increase Study Time
## 3837 7.27 5.4 4.9 Improve Sleep
## 3838 6.40 6.6 5.9 Reduce Screen Time
## 3839 6.91 4.5 4.6 Improve Sleep
## 3840 5.20 8.4 1.2 Good Performance Habit
## 3841 4.74 9.1 7.3 Reduce Stress
## 3842 2.50 7.5 2.7 Increase Study Time
## 3843 5.59 5.7 2.7 Improve Sleep
## 3844 7.63 7.5 4.3 Good Performance Habit
## 3845 1.01 6.0 7.4 Increase Study Time
## 3846 8.39 5.5 4.6 Improve Sleep
## 3847 3.39 7.5 7.2 Reduce Stress
## 3848 5.92 7.4 6.2 Reduce Stress
## 3849 3.40 5.3 6.9 Improve Sleep
## 3850 4.69 8.0 3.3 Good Performance Habit
## 3851 6.58 7.6 2.0 Reduce Screen Time
## 3852 4.63 5.9 2.9 Improve Sleep
## 3853 8.51 7.0 8.9 Reduce Stress
## 3854 5.07 5.8 2.6 Improve Sleep
## 3855 6.26 7.4 8.2 Reduce Stress
## 3856 3.79 8.2 4.9 Good Performance Habit
## 3857 4.02 8.6 2.7 Reduce Screen Time
## 3858 4.22 7.3 3.6 Good Performance Habit
## 3859 5.97 6.0 7.2 Reduce Stress
## 3860 8.24 6.6 4.4 Good Performance Habit
## 3861 5.06 8.8 3.7 Good Performance Habit
## 3862 2.49 6.5 7.1 Increase Study Time
## 3863 3.80 7.5 4.0 Good Performance Habit
## 3864 2.33 7.4 4.0 Increase Study Time
## 3865 5.94 7.5 7.2 Reduce Stress
## 3866 5.05 6.2 6.7 Reduce Stress
## 3867 2.91 6.2 5.4 Increase Study Time
## 3868 4.30 6.1 3.9 Good Performance Habit
## 3869 6.83 6.9 4.0 Good Performance Habit
## 3870 5.89 6.5 10.0 Reduce Stress
## 3871 3.89 7.6 2.6 Good Performance Habit
## 3872 6.47 6.7 1.0 Reduce Screen Time
## 3873 5.76 5.0 5.1 Improve Sleep
## 3874 3.93 6.2 4.0 Good Performance Habit
## 3875 5.36 6.9 7.0 Reduce Stress
## 3876 8.65 7.5 4.0 Good Performance Habit
## 3877 2.85 6.1 6.2 Increase Study Time
## 3878 6.99 5.8 4.8 Improve Sleep
## 3879 4.73 7.3 4.0 Reduce Screen Time
## 3880 6.23 6.8 5.6 Good Performance Habit
## 3881 5.78 8.9 3.6 Good Performance Habit
## 3882 5.55 6.6 9.2 Reduce Stress
## 3883 4.70 7.7 7.1 Reduce Stress
## 3884 5.01 6.4 5.7 Good Performance Habit
## 3885 6.32 5.6 6.6 Improve Sleep
## 3886 5.89 7.3 4.1 Good Performance Habit
## 3887 2.15 6.8 5.4 Increase Study Time
## 3888 5.89 7.9 6.0 Reduce Screen Time
## 3889 7.56 7.6 7.4 Reduce Stress
## 3890 6.75 4.6 6.1 Improve Sleep
## 3891 5.41 7.1 6.2 Reduce Stress
## 3892 1.44 6.4 8.7 Increase Study Time
## 3893 6.16 6.7 5.9 Good Performance Habit
## 3894 6.29 6.6 3.0 Good Performance Habit
## 3895 7.86 5.5 5.7 Improve Sleep
## 3896 3.14 8.3 5.3 Good Performance Habit
## 3897 4.54 3.8 7.0 Improve Sleep
## 3898 3.97 6.8 1.3 Good Performance Habit
## 3899 4.47 5.8 7.9 Improve Sleep
## 3900 1.63 5.2 2.6 Increase Study Time
## 3901 4.08 5.1 7.8 Improve Sleep
## 3902 4.15 6.1 6.4 Reduce Stress
## 3903 4.26 5.3 3.3 Improve Sleep
## 3904 8.10 6.5 3.9 Good Performance Habit
## 3905 3.76 6.6 4.2 Reduce Screen Time
## 3906 4.12 6.4 5.4 Reduce Screen Time
## 3907 7.17 4.2 2.8 Improve Sleep
## 3908 3.88 7.0 4.2 Good Performance Habit
## 3909 7.33 7.1 6.7 Reduce Stress
## 3910 5.86 6.3 5.2 Good Performance Habit
## 3911 3.75 7.3 4.8 Good Performance Habit
## 3912 3.60 7.1 6.6 Reduce Stress
## 3913 5.25 5.7 3.0 Improve Sleep
## 3914 4.59 8.2 2.8 Reduce Screen Time
## 3915 5.16 7.1 4.4 Good Performance Habit
## 3916 3.85 7.7 5.6 Good Performance Habit
## 3917 6.13 6.7 3.6 Good Performance Habit
## 3918 3.66 8.1 5.1 Good Performance Habit
## 3919 4.05 7.2 5.6 Good Performance Habit
## 3920 4.62 6.5 6.1 Reduce Stress
## 3921 2.51 5.0 6.6 Increase Study Time
## 3922 4.35 6.3 4.2 Good Performance Habit
## 3923 4.56 5.7 7.8 Improve Sleep
## 3924 2.14 5.6 5.6 Increase Study Time
## 3925 1.47 7.6 4.4 Increase Study Time
## 3926 7.39 8.4 7.5 Reduce Stress
## 3927 4.44 7.7 4.2 Good Performance Habit
## 3928 4.69 8.1 2.7 Good Performance Habit
## 3929 3.72 5.9 5.8 Improve Sleep
## 3930 8.05 8.0 1.7 Good Performance Habit
## 3931 4.56 5.7 3.8 Improve Sleep
## 3932 1.47 5.5 5.2 Increase Study Time
## 3933 5.92 6.3 6.0 Good Performance Habit
## 3934 3.05 6.2 6.7 Reduce Stress
## 3935 5.81 7.2 5.8 Reduce Screen Time
## 3936 4.70 7.4 5.7 Good Performance Habit
## 3937 7.45 6.9 3.6 Good Performance Habit
## 3938 5.90 7.7 5.9 Good Performance Habit
## 3939 4.23 6.1 4.2 Good Performance Habit
## 3940 7.76 5.7 4.4 Improve Sleep
## 3941 10.31 7.3 3.9 Good Performance Habit
## 3942 3.93 8.5 7.9 Reduce Stress
## 3943 7.11 7.6 7.7 Reduce Stress
## 3944 5.72 6.3 1.0 Good Performance Habit
## 3945 5.87 7.8 4.2 Good Performance Habit
## 3946 2.56 6.8 2.8 Increase Study Time
## 3947 3.07 6.8 4.8 Good Performance Habit
## 3948 7.77 6.8 7.6 Reduce Stress
## 3949 5.29 6.6 5.1 Good Performance Habit
## 3950 3.95 8.5 7.1 Reduce Stress
## 3951 8.53 8.0 3.3 Reduce Screen Time
## 3952 7.40 7.9 8.3 Reduce Stress
## 3953 6.44 5.6 9.2 Improve Sleep
## 3954 3.08 9.0 5.2 Good Performance Habit
## 3955 4.98 5.8 1.0 Improve Sleep
## 3956 7.90 7.9 2.0 Good Performance Habit
## 3957 1.01 3.0 2.6 Increase Study Time
## 3958 1.88 7.1 6.8 Increase Study Time
## 3959 3.43 7.9 4.7 Good Performance Habit
## 3960 6.92 6.9 2.8 Good Performance Habit
## 3961 5.46 6.0 6.3 Reduce Stress
## 3962 5.93 5.3 4.0 Improve Sleep
## 3963 5.39 7.3 1.7 Good Performance Habit
## 3964 5.21 8.0 1.0 Reduce Screen Time
## 3965 7.38 8.0 6.6 Reduce Stress
## 3966 12.00 6.6 6.5 Reduce Stress
## 3967 5.94 8.6 3.0 Good Performance Habit
## 3968 7.60 8.0 2.7 Good Performance Habit
## 3969 4.15 8.4 4.1 Good Performance Habit
## 3970 8.17 7.5 9.4 Reduce Stress
## 3971 5.21 8.3 5.7 Good Performance Habit
## 3972 5.38 7.1 3.9 Good Performance Habit
## 3973 4.11 7.3 3.7 Good Performance Habit
## 3974 3.52 6.0 6.2 Reduce Stress
## 3975 3.95 4.6 7.0 Improve Sleep
## 3976 3.10 6.9 2.6 Good Performance Habit
## 3977 2.47 6.7 4.0 Increase Study Time
## 3978 8.67 5.8 5.1 Improve Sleep
## 3979 5.91 6.4 4.9 Good Performance Habit
## 3980 6.98 6.4 5.2 Good Performance Habit
## 3981 6.03 7.5 4.6 Good Performance Habit
## 3982 2.21 6.4 8.6 Increase Study Time
## 3983 5.09 6.9 3.9 Reduce Screen Time
## 3984 3.26 9.9 7.0 Reduce Stress
## 3985 3.44 5.3 4.1 Improve Sleep
## 3986 4.80 6.6 9.1 Reduce Stress
## 3987 5.36 9.2 4.3 Good Performance Habit
## 3988 5.21 5.9 4.8 Improve Sleep
## 3989 5.28 7.6 7.3 Reduce Stress
## 3990 4.45 6.0 3.4 Reduce Screen Time
## 3991 5.09 6.5 6.9 Reduce Stress
## 3992 7.51 7.1 4.7 Reduce Screen Time
## 3993 9.37 7.5 4.8 Good Performance Habit
## 3994 7.25 7.7 3.1 Good Performance Habit
## 3995 4.59 6.1 6.0 Good Performance Habit
## 3996 5.81 6.5 3.8 Good Performance Habit
## 3997 6.93 6.9 5.3 Good Performance Habit
## 3998 7.03 7.5 4.6 Good Performance Habit
## 3999 7.46 5.8 5.5 Improve Sleep
## 4000 7.49 6.6 4.6 Good Performance Habit
## 4001 5.83 6.0 7.3 Reduce Stress
## 4002 4.47 7.7 2.6 Reduce Screen Time
## 4003 1.96 8.4 5.0 Increase Study Time
## 4004 7.15 3.8 7.3 Improve Sleep
## 4005 6.25 6.2 6.5 Reduce Stress
## 4006 3.32 7.3 7.1 Reduce Stress
## 4007 5.05 6.4 3.0 Reduce Screen Time
## 4008 4.23 4.5 7.9 Improve Sleep
## 4009 4.14 8.0 4.0 Good Performance Habit
## 4010 8.49 8.1 5.1 Reduce Screen Time
## 4011 4.30 7.1 3.6 Good Performance Habit
## 4012 9.85 5.9 6.6 Improve Sleep
## 4013 4.75 6.7 6.7 Reduce Stress
## 4014 3.58 6.3 1.7 Good Performance Habit
## 4015 5.27 6.5 1.0 Good Performance Habit
## 4016 9.81 7.5 6.5 Reduce Stress
## 4017 4.70 8.1 4.0 Good Performance Habit
## 4018 6.03 7.6 6.6 Reduce Stress
## 4019 0.50 6.5 5.5 Increase Study Time
## 4020 6.18 6.2 5.1 Reduce Screen Time
## 4021 2.27 7.7 4.6 Increase Study Time
## 4022 4.77 5.3 2.4 Improve Sleep
## 4023 7.72 5.8 3.7 Improve Sleep
## 4024 4.50 7.3 6.1 Reduce Stress
## 4025 6.43 6.0 6.2 Reduce Stress
## 4026 4.55 7.0 7.6 Reduce Stress
## 4027 4.33 6.5 4.5 Reduce Screen Time
## 4028 5.55 7.3 4.5 Reduce Screen Time
## 4029 7.17 7.9 5.6 Good Performance Habit
## 4030 5.19 6.8 1.0 Reduce Screen Time
## 4031 4.96 6.7 7.4 Reduce Stress
## 4032 3.09 7.8 4.4 Reduce Screen Time
## 4033 1.63 8.2 4.8 Increase Study Time
## 4034 5.25 7.5 5.3 Good Performance Habit
## 4035 4.63 6.4 2.8 Good Performance Habit
## 4036 5.53 8.4 6.0 Good Performance Habit
## 4037 7.07 6.0 3.1 Good Performance Habit
## 4038 6.63 6.4 1.0 Good Performance Habit
## 4039 3.24 6.7 6.4 Reduce Stress
## 4040 5.50 8.0 9.8 Reduce Stress
## 4041 5.55 5.8 6.3 Improve Sleep
## 4042 4.50 6.1 6.3 Reduce Stress
## 4043 0.50 7.9 4.9 Increase Study Time
## 4044 3.39 9.6 9.4 Reduce Stress
## 4045 4.80 6.6 8.2 Reduce Stress
## 4046 6.49 6.0 4.0 Reduce Screen Time
## 4047 4.36 5.6 4.8 Improve Sleep
## 4048 2.20 8.2 2.8 Increase Study Time
## 4049 7.70 6.6 5.1 Good Performance Habit
## 4050 4.90 8.7 1.6 Good Performance Habit
## 4051 4.06 6.0 3.6 Good Performance Habit
## 4052 6.03 6.4 5.0 Reduce Screen Time
## 4053 6.35 7.0 1.3 Good Performance Habit
## 4054 4.81 6.3 3.5 Good Performance Habit
## 4055 3.80 6.6 6.6 Reduce Stress
## 4056 3.83 7.8 6.9 Reduce Stress
## 4057 6.55 6.3 3.0 Good Performance Habit
## 4058 4.68 5.5 4.5 Improve Sleep
## 4059 5.95 6.2 4.5 Good Performance Habit
## 4060 1.14 7.8 4.7 Increase Study Time
## 4061 3.97 7.1 4.6 Reduce Screen Time
## 4062 4.19 7.9 2.9 Reduce Screen Time
## 4063 4.01 6.9 7.3 Reduce Stress
## 4064 1.06 7.1 5.0 Increase Study Time
## 4065 4.06 7.0 3.2 Good Performance Habit
## 4066 8.09 7.0 5.4 Good Performance Habit
## 4067 5.55 6.7 6.5 Reduce Stress
## 4068 3.89 4.5 6.1 Improve Sleep
## 4069 3.51 8.3 9.3 Reduce Stress
## 4070 2.24 8.9 3.0 Increase Study Time
## 4071 5.40 7.2 3.8 Good Performance Habit
## 4072 3.38 7.8 2.8 Good Performance Habit
## 4073 4.15 6.4 2.3 Good Performance Habit
## 4074 6.72 7.0 7.4 Reduce Stress
## 4075 6.82 8.6 5.2 Good Performance Habit
## 4076 6.17 5.8 4.8 Improve Sleep
## 4077 1.62 8.6 7.1 Increase Study Time
## 4078 3.80 8.2 4.1 Good Performance Habit
## 4079 7.29 4.9 2.1 Improve Sleep
## 4080 2.56 7.2 4.7 Increase Study Time
## 4081 7.44 8.3 3.3 Reduce Screen Time
## 4082 4.87 6.8 2.1 Good Performance Habit
## 4083 6.82 7.6 8.6 Reduce Stress
## 4084 4.09 5.3 5.6 Improve Sleep
## 4085 2.59 7.9 6.3 Increase Study Time
## 4086 2.90 7.5 8.5 Increase Study Time
## 4087 7.83 8.4 5.2 Good Performance Habit
## 4088 4.28 5.8 6.4 Improve Sleep
## 4089 2.47 7.1 4.2 Increase Study Time
## 4090 6.55 7.6 1.1 Reduce Screen Time
## 4091 1.83 6.6 6.5 Increase Study Time
## 4092 4.59 7.1 7.7 Reduce Stress
## 4093 5.60 8.6 4.1 Good Performance Habit
## 4094 5.50 7.0 4.6 Good Performance Habit
## 4095 5.76 5.7 1.6 Improve Sleep
## 4096 4.74 7.1 2.6 Good Performance Habit
## 4097 1.09 6.5 8.1 Increase Study Time
## 4098 5.41 6.3 3.9 Good Performance Habit
## 4099 4.83 8.1 3.4 Good Performance Habit
## 4100 4.52 6.9 4.5 Good Performance Habit
## 4101 5.89 5.9 2.9 Improve Sleep
## 4102 6.45 5.5 2.5 Improve Sleep
## 4103 5.34 6.9 1.8 Good Performance Habit
## 4104 7.91 8.2 5.3 Good Performance Habit
## 4105 9.30 7.4 3.8 Good Performance Habit
## 4106 5.49 7.6 4.0 Good Performance Habit
## 4107 4.22 5.5 6.4 Improve Sleep
## 4108 2.32 7.8 9.0 Increase Study Time
## 4109 6.07 6.3 3.8 Good Performance Habit
## 4110 1.36 8.2 2.3 Increase Study Time
## 4111 8.28 8.3 2.6 Good Performance Habit
## 4112 6.87 6.9 7.1 Reduce Stress
## 4113 3.86 5.3 2.9 Improve Sleep
## 4114 6.27 8.0 5.9 Good Performance Habit
## 4115 3.17 7.2 8.0 Reduce Stress
## 4116 2.71 6.8 4.9 Increase Study Time
## 4117 6.44 6.1 4.6 Good Performance Habit
## 4118 2.88 6.1 5.8 Increase Study Time
## 4119 5.40 7.2 8.5 Reduce Stress
## 4120 4.65 6.8 3.7 Reduce Screen Time
## 4121 8.04 8.1 5.0 Reduce Screen Time
## 4122 5.54 4.5 4.0 Improve Sleep
## 4123 8.07 6.9 4.5 Good Performance Habit
## 4124 6.64 8.7 2.7 Good Performance Habit
## 4125 3.37 7.7 8.1 Reduce Stress
## 4126 2.57 5.5 6.4 Increase Study Time
## 4127 0.69 7.7 5.8 Increase Study Time
## 4128 4.97 6.2 6.7 Reduce Stress
## 4129 0.55 6.1 6.1 Increase Study Time
## 4130 3.26 6.1 7.6 Reduce Stress
## 4131 0.08 5.6 4.0 Increase Study Time
## 4132 3.66 6.7 4.7 Good Performance Habit
## 4133 6.31 7.3 4.6 Good Performance Habit
## 4134 3.14 6.4 5.4 Good Performance Habit
## 4135 3.79 6.0 2.3 Good Performance Habit
## 4136 3.98 7.0 10.0 Reduce Stress
## 4137 5.43 5.7 3.4 Improve Sleep
## 4138 1.93 6.6 4.9 Increase Study Time
## 4139 5.11 6.4 8.0 Reduce Stress
## 4140 4.68 7.9 4.3 Good Performance Habit
## 4141 2.82 6.9 6.8 Increase Study Time
## 4142 2.92 10.0 7.5 Increase Study Time
## 4143 7.31 6.9 1.0 Good Performance Habit
## 4144 6.33 8.3 3.1 Good Performance Habit
## 4145 5.74 6.9 5.6 Good Performance Habit
## 4146 3.21 6.8 2.8 Reduce Screen Time
## 4147 4.19 4.7 7.7 Improve Sleep
## 4148 2.28 7.7 7.6 Increase Study Time
## 4149 1.35 6.0 6.6 Increase Study Time
## 4150 3.93 6.7 3.9 Reduce Screen Time
## 4151 3.67 7.1 3.9 Good Performance Habit
## 4152 2.37 7.9 6.3 Increase Study Time
## 4153 2.43 4.7 1.3 Increase Study Time
## 4154 5.60 7.1 3.2 Good Performance Habit
## 4155 3.94 7.1 6.6 Reduce Stress
## 4156 1.71 5.9 5.2 Increase Study Time
## 4157 8.94 6.5 2.0 Reduce Screen Time
## 4158 1.38 6.8 5.9 Increase Study Time
## 4159 5.29 7.5 6.6 Reduce Stress
## 4160 2.85 5.9 4.0 Increase Study Time
## 4161 6.21 6.2 1.2 Good Performance Habit
## 4162 5.00 7.9 2.7 Good Performance Habit
## 4163 6.89 6.8 4.9 Good Performance Habit
## 4164 4.72 5.5 4.3 Improve Sleep
## 4165 3.34 8.6 1.9 Good Performance Habit
## 4166 7.74 7.4 3.6 Good Performance Habit
## 4167 4.74 7.0 4.1 Good Performance Habit
## 4168 4.44 6.3 6.0 Good Performance Habit
## 4169 4.55 8.4 1.9 Good Performance Habit
## 4170 3.40 5.7 2.9 Improve Sleep
## 4171 5.56 6.6 7.2 Reduce Stress
## 4172 8.21 8.0 1.9 Good Performance Habit
## 4173 7.84 6.8 1.0 Good Performance Habit
## 4174 5.45 6.5 2.0 Good Performance Habit
## 4175 6.14 7.8 3.7 Good Performance Habit
## 4176 6.35 7.5 3.2 Good Performance Habit
## 4177 3.58 6.9 4.7 Good Performance Habit
## 4178 7.83 5.9 4.3 Improve Sleep
## 4179 5.35 7.1 2.4 Good Performance Habit
## 4180 1.22 6.4 6.7 Increase Study Time
## 4181 6.09 7.8 2.9 Reduce Screen Time
## 4182 3.03 6.5 7.1 Reduce Stress
## 4183 5.45 8.5 2.8 Good Performance Habit
## 4184 6.20 9.6 4.6 Good Performance Habit
## 4185 4.23 9.4 7.4 Reduce Stress
## 4186 5.40 7.1 4.0 Good Performance Habit
## 4187 7.55 6.6 6.2 Reduce Stress
## 4188 2.09 5.9 7.2 Increase Study Time
## 4189 1.08 6.4 1.9 Increase Study Time
## 4190 4.60 6.8 2.8 Good Performance Habit
## 4191 4.36 4.2 4.6 Improve Sleep
## 4192 9.00 6.1 1.9 Good Performance Habit
## 4193 6.83 5.7 4.6 Improve Sleep
## 4194 5.90 5.7 5.5 Improve Sleep
## 4195 4.64 6.5 4.5 Good Performance Habit
## 4196 0.97 9.5 3.5 Increase Study Time
## 4197 2.19 6.2 5.2 Increase Study Time
## 4198 4.18 9.8 3.9 Good Performance Habit
## 4199 5.20 6.2 4.7 Good Performance Habit
## 4200 3.98 6.1 3.2 Good Performance Habit
## 4201 5.05 7.5 7.9 Reduce Stress
## 4202 6.22 7.3 7.7 Reduce Stress
## 4203 3.40 8.8 6.4 Reduce Stress
## 4204 3.97 7.1 4.6 Good Performance Habit
## 4205 2.88 7.6 6.2 Increase Study Time
## 4206 7.23 6.6 5.6 Good Performance Habit
## 4207 0.77 5.6 4.3 Increase Study Time
## 4208 6.01 7.2 7.4 Reduce Stress
## 4209 6.35 9.1 8.5 Reduce Stress
## 4210 0.75 7.8 1.0 Increase Study Time
## 4211 3.84 7.0 6.4 Reduce Stress
## 4212 6.97 6.7 5.5 Good Performance Habit
## 4213 3.00 6.3 5.8 Good Performance Habit
## 4214 3.65 9.4 3.6 Good Performance Habit
## 4215 4.71 7.1 5.9 Good Performance Habit
## 4216 7.43 6.8 4.2 Good Performance Habit
## 4217 6.04 5.7 1.8 Improve Sleep
## 4218 3.43 6.1 4.5 Good Performance Habit
## 4219 2.04 6.6 9.1 Increase Study Time
## 4220 1.77 7.8 4.8 Increase Study Time
## 4221 5.46 7.5 4.2 Good Performance Habit
## 4222 0.45 3.8 2.6 Increase Study Time
## 4223 3.62 6.2 7.5 Reduce Stress
## 4224 5.97 8.3 5.9 Good Performance Habit
## 4225 2.37 8.3 4.2 Increase Study Time
## 4226 4.13 9.0 8.2 Reduce Stress
## 4227 4.55 8.4 5.2 Good Performance Habit
## 4228 6.28 7.7 6.2 Reduce Stress
## 4229 2.07 6.7 4.0 Increase Study Time
## 4230 4.91 7.4 8.6 Reduce Stress
## 4231 4.66 7.6 2.6 Good Performance Habit
## 4232 4.98 7.1 7.3 Reduce Stress
## 4233 1.62 7.2 4.2 Increase Study Time
## 4234 5.78 7.1 2.5 Good Performance Habit
## 4235 3.08 7.3 6.1 Reduce Stress
## 4236 4.54 7.4 2.9 Reduce Screen Time
## 4237 3.07 7.4 3.8 Good Performance Habit
## 4238 8.65 6.6 6.1 Reduce Stress
## 4239 4.88 6.6 7.0 Reduce Stress
## 4240 9.05 7.8 9.0 Reduce Stress
## 4241 3.52 5.8 4.4 Improve Sleep
## 4242 4.22 6.7 5.4 Good Performance Habit
## 4243 7.73 7.5 1.0 Good Performance Habit
## 4244 4.04 9.0 4.8 Good Performance Habit
## 4245 5.66 6.4 1.7 Good Performance Habit
## 4246 7.09 5.0 3.9 Improve Sleep
## 4247 4.04 6.1 4.5 Reduce Screen Time
## 4248 3.43 8.5 5.8 Good Performance Habit
## 4249 4.29 6.3 5.7 Good Performance Habit
## 4250 6.81 8.4 6.3 Reduce Stress
## 4251 5.64 4.6 2.9 Improve Sleep
## 4252 7.37 5.3 1.0 Improve Sleep
## 4253 4.26 6.5 7.9 Reduce Stress
## 4254 3.83 7.3 4.4 Reduce Screen Time
## 4255 2.53 8.6 6.2 Increase Study Time
## 4256 4.19 5.3 3.2 Improve Sleep
## 4257 3.61 6.9 3.7 Good Performance Habit
## 4258 4.55 7.9 3.9 Reduce Screen Time
## 4259 2.91 8.1 4.1 Increase Study Time
## 4260 3.36 7.1 5.9 Reduce Screen Time
## 4261 4.17 7.4 4.2 Good Performance Habit
## 4262 6.72 6.5 4.3 Good Performance Habit
## 4263 4.12 7.8 4.9 Good Performance Habit
## 4264 3.64 8.2 4.5 Good Performance Habit
## 4265 6.84 6.9 4.2 Good Performance Habit
## 4266 7.48 8.5 7.6 Reduce Stress
## 4267 4.19 7.0 5.3 Good Performance Habit
## 4268 4.28 6.2 9.0 Reduce Stress
## 4269 1.17 7.7 5.3 Increase Study Time
## 4270 1.68 8.3 3.1 Increase Study Time
## 4271 4.70 6.9 2.6 Good Performance Habit
## 4272 7.56 7.4 4.8 Good Performance Habit
## 4273 8.48 6.5 2.7 Good Performance Habit
## 4274 6.44 7.6 4.1 Good Performance Habit
## 4275 3.83 6.1 3.1 Good Performance Habit
## 4276 5.82 5.9 7.4 Improve Sleep
## 4277 1.86 8.9 5.4 Increase Study Time
## 4278 4.63 7.7 4.5 Good Performance Habit
## 4279 2.44 5.7 3.9 Increase Study Time
## 4280 4.81 6.7 3.0 Good Performance Habit
## 4281 7.66 6.1 3.4 Good Performance Habit
## 4282 9.15 7.8 4.7 Good Performance Habit
## 4283 5.23 6.3 7.5 Reduce Stress
## 4284 5.59 5.7 6.0 Improve Sleep
## 4285 1.49 6.6 4.0 Increase Study Time
## 4286 3.50 4.5 5.1 Improve Sleep
## 4287 7.84 6.6 6.0 Good Performance Habit
## 4288 7.12 5.1 2.1 Improve Sleep
## 4289 6.47 6.0 4.9 Good Performance Habit
## 4290 5.70 7.8 3.2 Good Performance Habit
## 4291 8.09 8.6 3.2 Good Performance Habit
## 4292 4.29 7.9 6.3 Reduce Stress
## 4293 4.42 7.9 5.9 Good Performance Habit
## 4294 10.42 4.3 6.3 Improve Sleep
## 4295 3.09 6.0 2.9 Good Performance Habit
## 4296 5.70 7.8 5.2 Good Performance Habit
## 4297 4.06 7.9 6.3 Reduce Stress
## 4298 7.80 6.6 3.3 Good Performance Habit
## 4299 4.28 6.1 5.1 Good Performance Habit
## 4300 4.12 7.9 4.3 Good Performance Habit
## 4301 4.19 5.7 7.8 Improve Sleep
## 4302 6.42 6.4 3.8 Good Performance Habit
## 4303 2.80 5.7 3.0 Increase Study Time
## 4304 1.84 4.6 5.6 Increase Study Time
## 4305 4.57 7.2 3.1 Good Performance Habit
## 4306 4.10 8.2 6.1 Reduce Stress
## 4307 5.88 7.7 6.7 Reduce Stress
## 4308 4.12 6.1 6.0 Good Performance Habit
## 4309 3.60 7.7 6.2 Reduce Stress
## 4310 5.38 5.8 3.9 Improve Sleep
## 4311 5.67 3.6 7.0 Improve Sleep
## 4312 6.85 6.4 5.2 Good Performance Habit
## 4313 4.94 7.6 6.4 Reduce Stress
## 4314 1.18 5.1 2.9 Increase Study Time
## 4315 4.72 6.6 4.4 Good Performance Habit
## 4316 4.83 7.1 1.0 Good Performance Habit
## 4317 4.61 7.3 1.0 Reduce Screen Time
## 4318 5.88 8.8 8.6 Reduce Stress
## 4319 4.24 5.9 5.6 Improve Sleep
## 4320 7.04 6.1 2.0 Good Performance Habit
## 4321 4.23 7.2 3.2 Good Performance Habit
## 4322 7.61 8.3 2.9 Good Performance Habit
## 4323 2.59 7.2 8.8 Increase Study Time
## 4324 0.10 6.5 4.9 Increase Study Time
## 4325 2.88 6.7 3.0 Increase Study Time
## 4326 10.51 8.8 6.5 Reduce Stress
## 4327 4.30 7.9 6.0 Reduce Screen Time
## 4328 4.59 7.7 7.4 Reduce Stress
## 4329 5.36 7.3 5.3 Good Performance Habit
## 4330 3.97 8.3 5.8 Good Performance Habit
## 4331 5.35 7.8 4.4 Good Performance Habit
## 4332 5.07 7.4 5.5 Good Performance Habit
## 4333 8.96 6.6 2.9 Good Performance Habit
## 4334 7.23 6.8 2.7 Good Performance Habit
## 4335 5.38 7.4 4.9 Good Performance Habit
## 4336 6.24 5.0 6.2 Improve Sleep
## 4337 6.06 6.1 9.7 Reduce Stress
## 4338 2.68 5.7 5.3 Increase Study Time
## 4339 7.09 7.5 5.0 Reduce Screen Time
## 4340 3.58 8.9 6.5 Reduce Stress
## 4341 6.44 8.1 2.0 Good Performance Habit
## 4342 5.14 7.2 3.7 Good Performance Habit
## 4343 6.67 5.4 8.0 Improve Sleep
## 4344 7.71 9.2 4.7 Good Performance Habit
## 4345 6.04 7.7 5.6 Good Performance Habit
## 4346 3.90 8.4 4.2 Good Performance Habit
## 4347 4.23 7.4 5.8 Good Performance Habit
## 4348 6.00 7.9 9.2 Reduce Stress
## 4349 4.03 8.5 3.1 Good Performance Habit
## 4350 4.10 6.5 5.6 Good Performance Habit
## 4351 4.63 7.9 3.8 Good Performance Habit
## 4352 4.15 4.5 5.6 Improve Sleep
## 4353 5.92 8.2 5.2 Reduce Screen Time
## 4354 3.96 7.9 7.8 Reduce Stress
## 4355 5.05 7.1 6.6 Reduce Stress
## 4356 3.40 8.2 2.7 Good Performance Habit
## 4357 1.40 10.0 5.8 Increase Study Time
## 4358 6.46 7.7 6.3 Reduce Stress
## 4359 6.83 7.2 5.2 Reduce Screen Time
## 4360 3.87 6.2 4.6 Reduce Screen Time
## 4361 6.48 7.2 1.4 Good Performance Habit
## 4362 5.49 6.4 4.9 Good Performance Habit
## 4363 2.55 8.3 5.7 Increase Study Time
## 4364 7.24 6.8 7.2 Reduce Stress
## 4365 0.88 7.4 4.2 Increase Study Time
## 4366 4.77 7.7 2.6 Reduce Screen Time
## 4367 6.32 7.5 4.7 Good Performance Habit
## 4368 2.67 7.2 5.5 Increase Study Time
## 4369 8.09 7.3 4.9 Good Performance Habit
## 4370 3.70 6.6 1.5 Good Performance Habit
## 4371 7.39 7.6 4.4 Good Performance Habit
## 4372 4.51 7.4 4.1 Good Performance Habit
## 4373 6.27 6.9 1.8 Good Performance Habit
## 4374 4.79 6.5 4.4 Good Performance Habit
## 4375 9.65 9.3 2.5 Good Performance Habit
## 4376 5.73 6.9 3.7 Good Performance Habit
## 4377 6.97 9.0 6.4 Reduce Stress
## 4378 6.36 8.3 6.8 Reduce Stress
## 4379 5.31 6.3 6.1 Reduce Stress
## 4380 4.42 7.4 5.8 Good Performance Habit
## 4381 5.75 6.7 1.5 Good Performance Habit
## 4382 6.93 7.0 3.1 Good Performance Habit
## 4383 6.76 7.4 5.0 Good Performance Habit
## 4384 6.04 9.1 8.4 Reduce Stress
## 4385 4.69 6.6 5.1 Good Performance Habit
## 4386 6.38 8.6 2.3 Good Performance Habit
## 4387 2.98 6.2 3.1 Increase Study Time
## 4388 4.93 7.3 4.2 Good Performance Habit
## 4389 0.88 7.7 7.3 Increase Study Time
## 4390 3.61 7.3 6.6 Reduce Stress
## 4391 4.66 4.9 5.0 Improve Sleep
## 4392 2.15 6.7 3.9 Increase Study Time
## 4393 2.69 5.6 2.7 Increase Study Time
## 4394 6.87 7.4 3.8 Good Performance Habit
## 4395 6.00 7.2 3.5 Good Performance Habit
## 4396 7.18 6.2 3.2 Good Performance Habit
## 4397 7.35 8.4 4.6 Good Performance Habit
## 4398 6.30 8.1 5.0 Reduce Screen Time
## 4399 6.61 6.6 3.5 Reduce Screen Time
## 4400 5.61 10.0 8.5 Reduce Stress
## 4401 7.59 7.2 3.9 Good Performance Habit
## 4402 1.97 8.4 3.6 Increase Study Time
## 4403 4.68 6.8 1.5 Good Performance Habit
## 4404 7.10 5.3 4.7 Improve Sleep
## 4405 6.72 8.5 9.5 Reduce Stress
## 4406 5.17 7.8 4.0 Good Performance Habit
## 4407 4.38 4.9 6.0 Improve Sleep
## 4408 6.72 7.2 7.1 Reduce Stress
## 4409 4.70 7.0 8.2 Reduce Stress
## 4410 2.79 7.9 7.4 Increase Study Time
## 4411 7.37 7.4 2.6 Good Performance Habit
## 4412 4.28 7.4 5.9 Good Performance Habit
## 4413 5.41 8.7 7.4 Reduce Stress
## 4414 1.79 6.3 6.4 Increase Study Time
## 4415 1.11 6.6 4.0 Increase Study Time
## 4416 5.94 6.7 4.3 Reduce Screen Time
## 4417 8.36 7.3 4.4 Good Performance Habit
## 4418 0.48 6.7 2.0 Increase Study Time
## 4419 4.01 6.7 5.0 Reduce Screen Time
## 4420 6.16 6.1 8.7 Reduce Stress
## 4421 5.42 6.1 6.1 Reduce Stress
## 4422 5.16 7.3 6.0 Reduce Screen Time
## 4423 4.98 6.3 3.6 Reduce Screen Time
## 4424 3.11 7.0 2.6 Good Performance Habit
## 4425 7.24 8.2 4.4 Good Performance Habit
## 4426 6.96 7.6 5.8 Good Performance Habit
## 4427 5.77 8.4 3.2 Good Performance Habit
## 4428 0.44 5.0 5.2 Increase Study Time
## 4429 8.40 6.3 5.2 Reduce Screen Time
## 4430 4.93 6.7 8.1 Reduce Stress
## 4431 6.09 7.2 5.4 Good Performance Habit
## 4432 8.89 7.1 8.4 Reduce Stress
## 4433 7.66 6.4 6.1 Reduce Stress
## 4434 4.86 7.8 2.6 Good Performance Habit
## 4435 7.19 7.4 5.4 Good Performance Habit
## 4436 6.24 5.8 6.1 Improve Sleep
## 4437 3.88 7.6 3.8 Good Performance Habit
## 4438 5.31 5.7 5.5 Improve Sleep
## 4439 1.50 9.2 9.0 Increase Study Time
## 4440 1.89 6.8 2.7 Increase Study Time
## 4441 5.43 7.0 4.2 Good Performance Habit
## 4442 7.88 8.1 6.3 Reduce Stress
## 4443 3.08 6.0 3.6 Good Performance Habit
## 4444 7.45 5.1 3.7 Improve Sleep
## 4445 5.35 6.5 7.4 Reduce Stress
## 4446 8.65 8.7 5.3 Good Performance Habit
## 4447 4.34 7.9 3.1 Good Performance Habit
## 4448 10.98 5.8 4.6 Improve Sleep
## 4449 5.96 6.3 4.8 Good Performance Habit
## 4450 4.58 8.5 5.1 Good Performance Habit
## 4451 5.56 9.3 5.8 Good Performance Habit
## 4452 1.39 5.8 2.6 Increase Study Time
## 4453 5.75 6.8 7.5 Reduce Stress
## 4454 4.42 7.0 2.9 Good Performance Habit
## 4455 6.06 4.9 6.6 Improve Sleep
## 4456 4.41 7.7 7.0 Reduce Stress
## 4457 0.67 8.0 4.3 Increase Study Time
## 4458 0.57 7.3 4.6 Increase Study Time
## 4459 3.73 6.2 6.4 Reduce Stress
## 4460 2.50 6.9 7.0 Increase Study Time
## 4461 6.80 7.7 5.7 Reduce Screen Time
## 4462 2.87 6.5 1.7 Increase Study Time
## 4463 5.92 6.6 4.0 Good Performance Habit
## 4464 4.70 6.8 7.0 Reduce Stress
## 4465 8.13 8.2 2.0 Good Performance Habit
## 4466 5.21 8.6 2.5 Reduce Screen Time
## 4467 5.42 7.9 6.0 Good Performance Habit
## 4468 2.98 7.0 3.7 Increase Study Time
## 4469 5.77 7.5 4.2 Good Performance Habit
## 4470 6.36 7.5 4.2 Good Performance Habit
## 4471 4.78 6.1 3.9 Good Performance Habit
## 4472 6.44 8.5 5.8 Reduce Screen Time
## 4473 2.92 6.3 7.8 Increase Study Time
## 4474 4.57 7.2 3.1 Good Performance Habit
## 4475 5.83 5.9 5.1 Improve Sleep
## 4476 4.38 6.4 3.6 Good Performance Habit
## 4477 7.48 8.1 6.5 Reduce Stress
## 4478 6.30 6.4 4.6 Reduce Screen Time
## 4479 3.77 5.4 10.0 Improve Sleep
## 4480 3.14 4.5 5.7 Improve Sleep
## 4481 4.99 5.9 5.5 Improve Sleep
## 4482 3.55 6.3 7.8 Reduce Stress
## 4483 4.21 7.0 4.2 Good Performance Habit
## 4484 2.76 5.6 3.9 Increase Study Time
## 4485 6.57 6.8 5.4 Good Performance Habit
## 4486 5.36 6.1 3.9 Good Performance Habit
## 4487 5.62 7.4 1.4 Good Performance Habit
## 4488 6.66 7.0 3.6 Reduce Screen Time
## 4489 0.41 6.2 4.4 Increase Study Time
## 4490 5.09 6.1 6.7 Reduce Stress
## 4491 4.52 6.8 4.1 Reduce Screen Time
## 4492 6.38 7.2 1.9 Good Performance Habit
## 4493 6.03 6.2 2.3 Good Performance Habit
## 4494 6.06 7.7 8.1 Reduce Stress
## 4495 7.62 6.3 5.4 Good Performance Habit
## 4496 1.26 5.7 7.6 Increase Study Time
## 4497 2.88 7.6 10.0 Increase Study Time
## 4498 7.45 5.4 2.8 Improve Sleep
## 4499 7.91 8.7 4.3 Good Performance Habit
## 4500 3.38 6.6 1.0 Good Performance Habit
## 4501 7.26 6.8 3.7 Reduce Screen Time
## 4502 6.77 9.0 3.6 Reduce Screen Time
## 4503 2.27 5.8 7.7 Increase Study Time
## 4504 3.80 8.3 4.5 Good Performance Habit
## 4505 5.69 7.2 3.5 Good Performance Habit
## 4506 4.87 7.3 9.9 Reduce Stress
## 4507 8.63 8.4 1.1 Good Performance Habit
## 4508 6.23 8.9 7.5 Reduce Stress
## 4509 6.82 7.6 5.9 Good Performance Habit
## 4510 3.70 7.6 3.7 Reduce Screen Time
## 4511 2.55 6.8 3.4 Increase Study Time
## 4512 3.79 5.8 4.6 Improve Sleep
## 4513 7.84 5.6 4.9 Improve Sleep
## 4514 8.72 8.1 5.2 Reduce Screen Time
## 4515 3.39 7.0 5.5 Good Performance Habit
## 4516 4.73 6.0 5.4 Good Performance Habit
## 4517 0.02 6.7 4.5 Increase Study Time
## 4518 7.59 7.5 6.4 Reduce Stress
## 4519 2.49 6.7 5.3 Increase Study Time
## 4520 6.80 7.4 1.3 Reduce Screen Time
## 4521 7.59 7.8 3.8 Good Performance Habit
## 4522 2.34 8.5 8.4 Increase Study Time
## 4523 3.26 5.7 6.4 Improve Sleep
## 4524 6.45 6.6 9.3 Reduce Stress
## 4525 7.75 7.2 4.1 Good Performance Habit
## 4526 3.96 7.1 2.9 Good Performance Habit
## 4527 2.91 7.7 5.9 Increase Study Time
## 4528 5.70 5.0 4.1 Improve Sleep
## 4529 7.55 5.8 4.6 Improve Sleep
## 4530 2.79 8.2 2.7 Increase Study Time
## 4531 3.42 9.1 4.8 Good Performance Habit
## 4532 7.34 7.0 6.8 Reduce Stress
## 4533 5.41 5.7 5.0 Improve Sleep
## 4534 3.35 5.2 5.4 Improve Sleep
## 4535 5.01 7.8 5.0 Reduce Screen Time
## 4536 5.96 9.1 7.5 Reduce Stress
## 4537 7.06 8.1 7.1 Reduce Stress
## 4538 5.59 6.5 4.0 Good Performance Habit
## 4539 4.97 7.6 2.7 Good Performance Habit
## 4540 1.63 5.1 4.9 Increase Study Time
## 4541 6.08 6.0 5.0 Good Performance Habit
## 4542 6.03 6.7 5.9 Reduce Screen Time
## 4543 5.41 6.1 2.7 Reduce Screen Time
## 4544 5.04 5.2 7.9 Improve Sleep
## 4545 5.24 8.3 8.4 Reduce Stress
## 4546 6.91 7.7 2.7 Good Performance Habit
## 4547 4.25 5.3 4.8 Improve Sleep
## 4548 2.58 9.8 3.8 Increase Study Time
## 4549 6.80 9.0 4.1 Good Performance Habit
## 4550 4.24 7.2 8.7 Reduce Stress
## 4551 4.43 7.2 5.4 Good Performance Habit
## 4552 5.86 5.0 5.2 Improve Sleep
## 4553 4.49 8.5 7.2 Reduce Stress
## 4554 4.85 6.7 1.1 Reduce Screen Time
## 4555 2.75 8.2 8.4 Increase Study Time
## 4556 7.61 7.5 9.4 Reduce Stress
## 4557 2.31 6.9 5.8 Increase Study Time
## 4558 7.63 6.6 1.0 Good Performance Habit
## 4559 2.45 5.2 4.5 Increase Study Time
## 4560 3.56 7.2 8.4 Reduce Stress
## 4561 4.14 7.0 4.2 Good Performance Habit
## 4562 6.74 6.3 1.7 Good Performance Habit
## 4563 5.39 4.1 5.1 Improve Sleep
## 4564 4.06 5.5 1.1 Improve Sleep
## 4565 2.48 7.3 4.8 Increase Study Time
## 4566 6.98 7.7 4.3 Reduce Screen Time
## 4567 5.05 9.3 4.0 Good Performance Habit
## 4568 5.82 5.7 7.4 Improve Sleep
## 4569 4.61 6.1 5.7 Good Performance Habit
## 4570 3.97 7.2 7.8 Reduce Stress
## 4571 6.31 6.6 5.4 Good Performance Habit
## 4572 5.58 5.5 3.8 Improve Sleep
## 4573 7.27 7.8 4.3 Reduce Screen Time
## 4574 5.38 7.9 4.2 Good Performance Habit
## 4575 2.15 6.3 1.2 Increase Study Time
## 4576 6.52 6.2 6.1 Reduce Stress
## 4577 5.09 8.8 5.8 Reduce Screen Time
## 4578 4.52 6.6 6.4 Reduce Stress
## 4579 1.45 5.2 4.2 Increase Study Time
## 4580 3.26 7.2 6.2 Reduce Stress
## 4581 5.32 4.5 3.2 Improve Sleep
## 4582 3.73 7.0 4.6 Good Performance Habit
## 4583 5.50 6.6 4.5 Good Performance Habit
## 4584 6.19 6.6 4.0 Reduce Screen Time
## 4585 4.96 6.6 5.3 Reduce Screen Time
## 4586 3.11 8.6 8.0 Reduce Stress
## 4587 5.85 6.0 8.1 Reduce Stress
## 4588 5.72 6.2 4.0 Good Performance Habit
## 4589 4.49 7.0 7.5 Reduce Stress
## 4590 1.19 7.0 1.0 Increase Study Time
## 4591 2.51 7.0 5.4 Increase Study Time
## 4592 6.58 7.2 3.8 Good Performance Habit
## 4593 4.46 6.6 4.5 Reduce Screen Time
## 4594 1.38 5.7 6.4 Increase Study Time
## 4595 4.61 6.5 7.3 Reduce Stress
## 4596 5.07 8.2 6.0 Reduce Screen Time
## 4597 6.25 7.3 3.7 Good Performance Habit
## 4598 5.84 7.9 3.6 Reduce Screen Time
## 4599 5.73 5.8 6.5 Improve Sleep
## 4600 3.43 8.7 4.6 Good Performance Habit
## 4601 1.61 8.2 4.0 Increase Study Time
## 4602 3.73 6.3 4.5 Good Performance Habit
## 4603 7.71 6.0 2.0 Good Performance Habit
## 4604 1.93 6.6 6.7 Increase Study Time
## 4605 6.75 9.0 3.6 Good Performance Habit
## 4606 1.95 8.8 5.0 Increase Study Time
## 4607 2.35 4.3 8.3 Increase Study Time
## 4608 5.16 8.5 9.2 Reduce Stress
## 4609 3.31 8.7 1.0 Good Performance Habit
## 4610 4.46 6.2 5.6 Good Performance Habit
## 4611 2.63 7.8 2.3 Increase Study Time
## 4612 5.21 6.7 3.1 Good Performance Habit
## 4613 6.65 7.5 4.8 Good Performance Habit
## 4614 2.01 7.9 6.2 Increase Study Time
## 4615 6.03 6.4 6.0 Reduce Screen Time
## 4616 5.69 4.7 3.7 Improve Sleep
## 4617 6.51 8.2 4.8 Good Performance Habit
## 4618 0.37 7.4 9.9 Increase Study Time
## 4619 6.73 4.9 6.1 Improve Sleep
## 4620 2.62 8.4 1.3 Increase Study Time
## 4621 4.43 8.3 5.9 Good Performance Habit
## 4622 4.04 5.4 2.2 Improve Sleep
## 4623 2.89 7.5 4.3 Increase Study Time
## 4624 3.19 6.2 8.0 Reduce Stress
## 4625 3.46 7.0 5.4 Good Performance Habit
## 4626 5.26 8.5 2.6 Good Performance Habit
## 4627 6.38 7.5 8.5 Reduce Stress
## 4628 4.32 7.4 3.9 Reduce Screen Time
## 4629 6.49 6.6 4.7 Good Performance Habit
## 4630 5.22 7.9 7.7 Reduce Stress
## 4631 7.21 7.9 7.5 Reduce Stress
## 4632 2.26 8.5 7.3 Increase Study Time
## 4633 5.20 8.8 3.8 Good Performance Habit
## 4634 4.83 6.4 3.0 Good Performance Habit
## 4635 5.18 7.4 4.2 Good Performance Habit
## 4636 5.61 5.0 6.5 Improve Sleep
## 4637 6.52 8.5 7.1 Reduce Stress
## 4638 5.20 5.4 7.5 Improve Sleep
## 4639 5.95 7.5 6.4 Reduce Stress
## 4640 4.34 5.1 2.4 Improve Sleep
## 4641 4.62 7.3 4.5 Reduce Screen Time
## 4642 3.65 4.7 7.1 Improve Sleep
## 4643 7.05 7.4 1.6 Good Performance Habit
## 4644 6.47 7.6 2.4 Reduce Screen Time
## 4645 7.47 6.1 4.7 Good Performance Habit
## 4646 3.98 8.5 4.7 Reduce Screen Time
## 4647 4.55 7.9 4.8 Good Performance Habit
## 4648 9.84 5.6 7.3 Improve Sleep
## 4649 7.05 5.9 6.1 Improve Sleep
## 4650 2.02 8.7 6.1 Increase Study Time
## 4651 6.38 5.3 5.4 Improve Sleep
## 4652 5.60 8.6 7.4 Reduce Stress
## 4653 4.23 7.5 8.1 Reduce Stress
## 4654 4.35 5.4 8.9 Improve Sleep
## 4655 3.21 5.6 5.6 Improve Sleep
## 4656 3.86 7.5 5.9 Good Performance Habit
## 4657 3.37 7.2 2.6 Good Performance Habit
## 4658 2.58 6.7 3.7 Increase Study Time
## 4659 4.14 8.3 3.2 Good Performance Habit
## 4660 3.14 8.1 9.1 Reduce Stress
## 4661 6.33 5.8 7.6 Improve Sleep
## 4662 6.97 5.8 1.6 Improve Sleep
## 4663 4.60 5.9 7.5 Improve Sleep
## 4664 4.23 6.1 3.9 Good Performance Habit
## 4665 6.17 6.1 3.6 Reduce Screen Time
## 4666 4.67 7.6 6.0 Good Performance Habit
## 4667 8.93 4.3 1.6 Improve Sleep
## 4668 1.47 8.5 1.7 Increase Study Time
## 4669 0.24 7.8 7.9 Increase Study Time
## 4670 2.71 6.2 5.9 Increase Study Time
## 4671 5.86 7.9 4.6 Good Performance Habit
## 4672 6.46 7.5 6.5 Reduce Stress
## 4673 3.96 6.4 5.9 Good Performance Habit
## 4674 4.94 8.7 2.8 Good Performance Habit
## 4675 4.33 6.8 5.9 Reduce Screen Time
## 4676 5.89 6.8 4.7 Good Performance Habit
## 4677 8.95 7.6 5.2 Good Performance Habit
## 4678 0.38 6.1 3.3 Increase Study Time
## 4679 9.36 8.5 3.1 Good Performance Habit
## 4680 7.03 8.6 9.0 Reduce Stress
## 4681 4.31 5.8 5.0 Improve Sleep
## 4682 5.92 8.0 5.6 Reduce Screen Time
## 4683 4.88 8.7 8.9 Reduce Stress
## 4684 5.89 7.1 5.8 Good Performance Habit
## 4685 5.88 8.6 6.4 Reduce Stress
## 4686 6.49 8.8 1.9 Good Performance Habit
## 4687 2.93 7.4 6.4 Increase Study Time
## 4688 6.16 8.5 8.6 Reduce Stress
## 4689 3.62 8.6 5.8 Good Performance Habit
## 4690 4.34 6.9 2.9 Reduce Screen Time
## 4691 6.53 6.6 1.0 Reduce Screen Time
## 4692 4.06 9.4 5.7 Reduce Screen Time
## 4693 5.55 6.2 1.1 Good Performance Habit
## 4694 5.59 8.8 4.2 Good Performance Habit
## 4695 5.15 6.8 3.6 Good Performance Habit
## 4696 2.51 7.8 3.2 Increase Study Time
## 4697 5.93 7.1 7.2 Reduce Stress
## 4698 5.32 6.4 2.4 Reduce Screen Time
## 4699 9.42 7.7 5.5 Good Performance Habit
## 4700 2.87 7.8 6.0 Increase Study Time
## 4701 7.07 6.3 3.5 Good Performance Habit
## 4702 4.12 7.5 3.5 Good Performance Habit
## 4703 4.36 6.5 6.8 Reduce Stress
## 4704 8.39 7.3 4.1 Reduce Screen Time
## 4705 4.70 5.8 4.4 Improve Sleep
## 4706 6.57 6.0 7.4 Reduce Stress
## 4707 5.23 9.0 6.7 Reduce Stress
## 4708 3.17 8.3 9.1 Reduce Stress
## 4709 4.54 6.8 5.9 Good Performance Habit
## 4710 4.10 7.5 4.4 Reduce Screen Time
## 4711 4.53 7.2 7.1 Reduce Stress
## 4712 8.71 7.1 5.4 Good Performance Habit
## 4713 5.92 8.9 7.1 Reduce Stress
## 4714 1.51 7.4 5.3 Increase Study Time
## 4715 8.75 6.4 4.4 Reduce Screen Time
## 4716 5.74 5.3 5.5 Improve Sleep
## 4717 6.78 5.2 6.2 Improve Sleep
## 4718 8.12 9.0 7.4 Reduce Stress
## 4719 3.34 7.6 9.9 Reduce Stress
## 4720 5.66 8.2 4.9 Good Performance Habit
## 4721 4.70 7.7 2.9 Reduce Screen Time
## 4722 4.29 6.3 3.0 Good Performance Habit
## 4723 4.39 6.4 3.8 Good Performance Habit
## 4724 5.20 6.8 5.9 Good Performance Habit
## 4725 7.33 4.5 2.8 Improve Sleep
## 4726 6.55 4.9 4.0 Improve Sleep
## 4727 5.58 6.4 5.6 Reduce Screen Time
## 4728 7.41 5.8 4.0 Improve Sleep
## 4729 0.37 6.6 1.0 Increase Study Time
## 4730 5.08 7.5 6.4 Reduce Stress
## 4731 5.72 9.3 6.1 Reduce Stress
## 4732 5.64 8.6 8.8 Reduce Stress
## 4733 7.85 6.0 10.0 Reduce Stress
## 4734 5.36 5.8 5.6 Improve Sleep
## 4735 7.76 7.5 1.0 Good Performance Habit
## 4736 4.66 6.7 3.4 Good Performance Habit
## 4737 6.40 7.2 5.3 Good Performance Habit
## 4738 5.23 7.1 6.3 Reduce Stress
## 4739 4.52 7.7 1.0 Reduce Screen Time
## 4740 6.06 4.7 7.0 Improve Sleep
## 4741 6.17 7.2 5.5 Good Performance Habit
## 4742 3.23 5.0 5.8 Improve Sleep
## 4743 6.92 8.1 5.8 Good Performance Habit
## 4744 4.50 6.5 2.4 Good Performance Habit
## 4745 5.22 6.1 6.3 Reduce Stress
## 4746 1.31 7.8 5.5 Increase Study Time
## 4747 4.97 7.9 2.6 Good Performance Habit
## 4748 1.20 7.0 6.2 Increase Study Time
## 4749 6.75 8.1 5.1 Good Performance Habit
## 4750 3.47 5.6 6.6 Improve Sleep
## 4751 4.14 7.5 5.0 Good Performance Habit
## 4752 4.67 7.7 2.4 Good Performance Habit
## 4753 2.36 6.7 3.9 Increase Study Time
## 4754 5.08 8.0 3.9 Reduce Screen Time
## 4755 2.57 8.0 4.8 Increase Study Time
## 4756 4.60 9.0 6.9 Reduce Stress
## 4757 6.74 6.6 3.4 Reduce Screen Time
## 4758 7.59 5.9 5.9 Improve Sleep
## 4759 7.89 6.3 2.6 Good Performance Habit
## 4760 4.57 7.5 8.1 Reduce Stress
## 4761 3.11 7.4 4.4 Good Performance Habit
## 4762 6.00 7.2 4.5 Good Performance Habit
## 4763 8.15 5.8 3.3 Improve Sleep
## 4764 3.27 6.9 8.7 Reduce Stress
## 4765 7.74 8.4 1.3 Reduce Screen Time
## 4766 4.75 8.0 7.4 Reduce Stress
## 4767 0.80 6.0 5.9 Increase Study Time
## 4768 5.16 7.5 1.6 Good Performance Habit
## 4769 8.78 6.4 5.0 Reduce Screen Time
## 4770 6.46 7.2 2.7 Good Performance Habit
## 4771 7.16 6.2 4.4 Good Performance Habit
## 4772 5.82 6.4 3.8 Good Performance Habit
## 4773 1.65 6.3 6.7 Increase Study Time
## 4774 0.30 6.6 6.7 Increase Study Time
## 4775 2.89 5.9 6.9 Increase Study Time
## 4776 4.25 8.1 3.0 Good Performance Habit
## 4777 3.00 6.8 4.8 Good Performance Habit
## 4778 3.40 7.8 1.9 Good Performance Habit
## 4779 6.58 7.1 5.4 Good Performance Habit
## 4780 7.94 6.9 2.8 Good Performance Habit
## 4781 1.62 5.3 4.1 Increase Study Time
## 4782 2.88 5.5 1.0 Increase Study Time
## 4783 4.81 6.6 3.9 Good Performance Habit
## 4784 4.61 5.5 3.6 Improve Sleep
## 4785 0.29 7.7 2.9 Increase Study Time
## 4786 10.90 6.4 5.6 Good Performance Habit
## 4787 6.43 5.8 3.6 Improve Sleep
## 4788 5.73 6.7 4.7 Good Performance Habit
## 4789 1.15 7.3 5.2 Increase Study Time
## 4790 5.61 6.7 3.4 Good Performance Habit
## 4791 2.66 9.3 4.7 Increase Study Time
## 4792 6.04 8.3 3.7 Good Performance Habit
## 4793 5.60 6.9 2.9 Good Performance Habit
## 4794 5.10 6.2 3.8 Good Performance Habit
## 4795 5.88 5.3 4.8 Improve Sleep
## 4796 3.84 7.5 5.2 Good Performance Habit
## 4797 5.36 8.2 7.5 Reduce Stress
## 4798 0.18 6.8 7.2 Increase Study Time
## 4799 6.48 6.1 4.0 Good Performance Habit
## 4800 4.64 6.9 8.0 Reduce Stress
## 4801 10.10 6.1 6.5 Reduce Stress
## 4802 5.22 6.9 3.7 Good Performance Habit
## 4803 0.30 7.6 3.3 Increase Study Time
## 4804 8.09 6.7 7.2 Reduce Stress
## 4805 3.54 7.5 4.3 Reduce Screen Time
## 4806 2.74 8.1 7.2 Increase Study Time
## 4807 4.92 5.7 10.0 Improve Sleep
## 4808 7.59 5.8 3.1 Improve Sleep
## 4809 8.92 7.1 5.7 Good Performance Habit
## 4810 4.23 3.7 7.4 Improve Sleep
## 4811 5.44 8.1 4.4 Good Performance Habit
## 4812 5.46 6.5 2.3 Good Performance Habit
## 4813 3.70 7.1 7.5 Reduce Stress
## 4814 3.99 7.8 7.1 Reduce Stress
## 4815 4.72 4.8 7.3 Improve Sleep
## 4816 4.88 8.3 3.1 Reduce Screen Time
## 4817 7.14 7.6 3.2 Good Performance Habit
## 4818 1.12 4.1 4.8 Increase Study Time
## 4819 5.96 5.7 3.9 Improve Sleep
## 4820 5.76 9.5 5.8 Good Performance Habit
## 4821 7.77 7.8 7.4 Reduce Stress
## 4822 4.23 8.3 5.3 Reduce Screen Time
## 4823 4.25 6.9 5.1 Reduce Screen Time
## 4824 5.21 8.3 7.8 Reduce Stress
## 4825 3.86 5.0 4.2 Improve Sleep
## 4826 3.80 6.0 1.0 Reduce Screen Time
## 4827 3.65 9.1 4.2 Good Performance Habit
## 4828 3.66 8.2 7.8 Reduce Stress
## 4829 2.93 6.7 7.0 Increase Study Time
## 4830 3.77 7.7 6.3 Reduce Stress
## 4831 3.42 6.2 3.6 Reduce Screen Time
## 4832 3.51 5.4 4.8 Improve Sleep
## 4833 2.29 8.0 3.9 Increase Study Time
## 4834 6.89 6.6 4.0 Good Performance Habit
## 4835 5.60 7.2 5.8 Reduce Screen Time
## 4836 4.87 7.7 3.1 Good Performance Habit
## 4837 2.80 7.5 7.5 Increase Study Time
## 4838 6.26 8.4 4.1 Good Performance Habit
## 4839 4.49 6.4 6.7 Reduce Stress
## 4840 4.76 6.4 7.9 Reduce Stress
## 4841 5.16 7.9 1.3 Good Performance Habit
## 4842 4.74 8.4 3.5 Reduce Screen Time
## 4843 6.95 5.6 4.1 Improve Sleep
## 4844 3.38 5.2 1.0 Improve Sleep
## 4845 3.65 6.2 5.8 Good Performance Habit
## 4846 5.27 7.2 5.3 Good Performance Habit
## 4847 4.57 7.3 7.0 Reduce Stress
## 4848 6.07 5.7 4.1 Improve Sleep
## 4849 6.82 7.3 6.0 Reduce Screen Time
## 4850 7.74 8.9 2.9 Reduce Screen Time
## 4851 6.90 4.3 5.7 Improve Sleep
## 4852 4.42 7.3 1.4 Good Performance Habit
## 4853 4.65 7.2 5.5 Reduce Screen Time
## 4854 4.24 6.5 4.4 Good Performance Habit
## 4855 7.29 7.6 6.7 Reduce Stress
## 4856 4.53 8.0 10.0 Reduce Stress
## 4857 3.28 5.5 5.5 Improve Sleep
## 4858 2.90 7.1 5.9 Increase Study Time
## 4859 6.49 7.8 5.7 Good Performance Habit
## 4860 3.24 6.8 5.8 Reduce Screen Time
## 4861 0.60 7.5 3.2 Increase Study Time
## 4862 6.41 7.7 3.6 Good Performance Habit
## 4863 5.66 8.5 1.0 Good Performance Habit
## 4864 6.53 7.8 3.8 Good Performance Habit
## 4865 6.97 7.8 7.9 Reduce Stress
## 4866 6.02 8.6 3.8 Good Performance Habit
## 4867 5.78 7.2 2.3 Good Performance Habit
## 4868 5.11 9.1 6.1 Reduce Stress
## 4869 3.43 5.5 7.4 Improve Sleep
## 4870 0.77 7.4 4.8 Increase Study Time
## 4871 1.08 7.4 5.2 Increase Study Time
## 4872 5.75 7.4 7.5 Reduce Stress
## 4873 6.61 6.3 1.6 Reduce Screen Time
## 4874 5.07 7.5 8.5 Reduce Stress
## 4875 3.48 5.9 3.8 Improve Sleep
## 4876 6.28 6.5 5.3 Good Performance Habit
## 4877 4.96 5.9 1.0 Improve Sleep
## 4878 5.03 8.0 6.5 Reduce Stress
## 4879 4.29 7.1 6.4 Reduce Stress
## 4880 2.67 5.8 6.4 Increase Study Time
## 4881 3.00 5.1 5.2 Improve Sleep
## 4882 5.78 6.7 7.7 Reduce Stress
## 4883 8.26 7.1 5.1 Good Performance Habit
## 4884 8.54 9.3 6.8 Reduce Stress
## 4885 4.65 8.2 4.3 Good Performance Habit
## 4886 5.92 5.2 5.5 Improve Sleep
## 4887 4.84 8.4 8.2 Reduce Stress
## 4888 5.32 7.8 3.3 Good Performance Habit
## 4889 5.85 9.6 5.1 Good Performance Habit
## 4890 6.83 8.5 2.6 Good Performance Habit
## 4891 2.74 8.6 5.1 Increase Study Time
## 4892 8.56 6.4 4.5 Good Performance Habit
## 4893 4.77 5.9 5.0 Improve Sleep
## 4894 3.07 7.6 4.8 Good Performance Habit
## 4895 9.65 7.7 6.3 Reduce Stress
## 4896 3.25 8.3 4.6 Reduce Screen Time
## 4897 4.95 4.6 6.7 Improve Sleep
## 4898 3.56 6.4 4.8 Good Performance Habit
## 4899 7.39 5.3 3.5 Improve Sleep
## 4900 1.18 8.2 7.0 Increase Study Time
## 4901 5.70 7.7 5.6 Good Performance Habit
## 4902 1.85 8.2 4.9 Increase Study Time
## 4903 8.14 7.1 1.0 Good Performance Habit
## 4904 9.23 4.6 4.1 Improve Sleep
## 4905 6.75 7.2 5.2 Good Performance Habit
## 4906 3.47 7.5 5.6 Good Performance Habit
## 4907 7.36 6.4 1.0 Good Performance Habit
## 4908 9.42 7.5 1.8 Good Performance Habit
## 4909 5.54 6.8 8.0 Reduce Stress
## 4910 4.28 7.7 4.2 Reduce Screen Time
## 4911 7.97 6.0 6.6 Reduce Stress
## 4912 2.37 5.3 5.1 Increase Study Time
## 4913 4.45 8.1 3.5 Reduce Screen Time
## 4914 4.92 10.0 2.4 Good Performance Habit
## 4915 5.28 5.4 4.8 Improve Sleep
## 4916 7.24 5.9 6.6 Improve Sleep
## 4917 4.73 7.4 5.2 Good Performance Habit
## 4918 2.81 6.5 1.5 Increase Study Time
## 4919 2.22 8.3 3.3 Increase Study Time
## 4920 4.73 6.9 4.4 Good Performance Habit
## 4921 5.96 7.9 5.3 Good Performance Habit
## 4922 6.95 6.0 7.0 Reduce Stress
## 4923 6.26 6.3 9.3 Reduce Stress
## 4924 2.26 7.3 1.7 Increase Study Time
## 4925 6.16 6.4 7.1 Reduce Stress
## 4926 3.70 4.7 6.2 Improve Sleep
## 4927 7.63 8.1 7.2 Reduce Stress
## 4928 4.42 9.3 4.9 Good Performance Habit
## 4929 4.46 6.1 1.0 Good Performance Habit
## 4930 3.91 5.2 3.8 Improve Sleep
## 4931 6.99 9.1 8.3 Reduce Stress
## 4932 4.81 7.0 5.4 Good Performance Habit
## 4933 10.53 8.3 2.0 Good Performance Habit
## 4934 7.36 7.2 7.1 Reduce Stress
## 4935 2.69 8.6 6.1 Increase Study Time
## 4936 4.96 6.1 2.6 Good Performance Habit
## 4937 7.12 9.5 4.0 Good Performance Habit
## 4938 6.62 5.9 4.0 Improve Sleep
## 4939 6.26 8.0 4.5 Reduce Screen Time
## 4940 5.53 8.1 3.3 Good Performance Habit
## 4941 1.95 5.6 1.8 Increase Study Time
## 4942 2.04 7.9 5.6 Increase Study Time
## 4943 6.66 6.5 7.2 Reduce Stress
## 4944 3.78 7.6 4.5 Good Performance Habit
## 4945 5.08 7.8 6.5 Reduce Stress
## 4946 6.32 4.7 1.7 Improve Sleep
## 4947 1.26 8.1 1.3 Increase Study Time
## 4948 1.26 5.6 4.0 Increase Study Time
## 4949 6.11 8.0 5.6 Good Performance Habit
## 4950 3.87 8.5 4.9 Good Performance Habit
## 4951 4.34 6.1 8.3 Reduce Stress
## 4952 7.31 4.9 6.2 Improve Sleep
## 4953 4.50 7.6 3.8 Good Performance Habit
## 4954 4.92 8.2 6.1 Reduce Stress
## 4955 5.61 6.2 5.6 Good Performance Habit
## 4956 1.57 6.6 6.0 Increase Study Time
## 4957 8.50 7.3 8.1 Reduce Stress
## 4958 5.84 8.5 4.9 Good Performance Habit
## 4959 3.93 5.9 6.0 Improve Sleep
## 4960 7.30 6.5 7.9 Reduce Stress
## 4961 3.16 6.5 5.7 Good Performance Habit
## 4962 3.64 5.5 6.6 Improve Sleep
## 4963 2.56 6.3 6.0 Increase Study Time
## 4964 4.56 7.2 6.2 Reduce Stress
## 4965 3.53 7.4 2.7 Good Performance Habit
## 4966 5.54 8.9 2.2 Good Performance Habit
## 4967 3.68 7.9 1.0 Good Performance Habit
## 4968 5.53 6.2 4.4 Good Performance Habit
## 4969 5.89 6.8 3.8 Reduce Screen Time
## 4970 5.80 6.6 4.2 Reduce Screen Time
## 4971 5.76 3.2 5.0 Improve Sleep
## 4972 5.18 7.9 6.2 Reduce Stress
## 4973 3.36 7.8 4.2 Good Performance Habit
## 4974 1.03 6.6 5.3 Increase Study Time
## 4975 5.71 9.0 2.3 Reduce Screen Time
## 4976 2.20 6.4 3.1 Increase Study Time
## 4977 5.69 5.9 7.7 Improve Sleep
## 4978 4.90 5.9 6.0 Improve Sleep
## 4979 4.91 7.6 3.1 Good Performance Habit
## 4980 5.02 8.5 6.3 Reduce Stress
## 4981 6.15 8.4 2.8 Good Performance Habit
## 4982 3.06 5.3 4.2 Improve Sleep
## 4983 5.63 7.7 2.9 Reduce Screen Time
## 4984 7.16 4.5 3.7 Improve Sleep
## 4985 6.58 7.0 5.7 Good Performance Habit
## 4986 7.21 4.6 4.7 Improve Sleep
## 4987 4.45 7.3 4.0 Good Performance Habit
## 4988 4.84 7.6 5.0 Reduce Screen Time
## 4989 8.75 9.0 5.7 Good Performance Habit
## 4990 6.01 6.5 6.6 Reduce Stress
## 4991 5.52 8.0 4.3 Good Performance Habit
## 4992 7.00 6.8 6.9 Reduce Stress
## 4993 3.26 7.1 4.2 Good Performance Habit
## 4994 4.74 5.2 4.9 Improve Sleep
## 4995 5.88 4.9 4.5 Improve Sleep
## 4996 4.88 9.3 4.3 Good Performance Habit
## 4997 8.02 5.8 4.6 Improve Sleep
## 4998 5.88 6.7 3.6 Good Performance Habit
## 4999 6.77 7.0 5.9 Good Performance Habit
## 5000 3.35 6.5 4.3 Good Performance Habit
## 5001 4.98 7.5 3.3 Good Performance Habit
## 5002 4.95 8.1 6.8 Reduce Stress
## 5003 6.04 7.8 6.3 Reduce Stress
## 5004 5.98 8.5 6.9 Reduce Stress
## 5005 5.01 10.0 6.9 Reduce Stress
## 5006 6.16 7.3 4.2 Good Performance Habit
## 5007 9.19 8.1 5.1 Good Performance Habit
## 5008 5.07 7.8 5.8 Good Performance Habit
## 5009 3.71 6.7 6.6 Reduce Stress
## 5010 7.42 8.2 5.4 Good Performance Habit
## 5011 7.98 6.4 4.2 Good Performance Habit
## 5012 5.38 5.5 3.5 Improve Sleep
## 5013 6.94 7.7 7.7 Reduce Stress
## 5014 0.94 8.8 7.1 Increase Study Time
## 5015 5.96 5.6 6.7 Improve Sleep
## 5016 4.65 8.0 1.0 Good Performance Habit
## 5017 9.42 7.9 6.3 Reduce Stress
## 5018 5.48 6.2 4.4 Good Performance Habit
## 5019 8.69 6.0 3.9 Reduce Screen Time
## 5020 4.66 3.7 1.0 Improve Sleep
## 5021 4.48 6.5 2.5 Good Performance Habit
## 5022 3.96 8.0 7.4 Reduce Stress
## 5023 2.69 8.5 6.4 Increase Study Time
## 5024 3.90 9.8 7.1 Reduce Stress
## 5025 7.23 7.6 4.1 Reduce Screen Time
## 5026 1.98 6.5 6.8 Increase Study Time
## 5027 5.22 8.4 7.2 Reduce Stress
## 5028 7.25 8.4 6.9 Reduce Stress
## 5029 5.54 4.2 3.4 Improve Sleep
## 5030 6.07 7.4 3.9 Good Performance Habit
## 5031 5.72 6.4 5.1 Good Performance Habit
## 5032 6.07 9.5 5.7 Good Performance Habit
## 5033 1.23 7.5 1.7 Increase Study Time
## 5034 8.03 8.1 6.5 Reduce Stress
## 5035 5.76 6.4 3.5 Good Performance Habit
## 5036 3.94 6.9 4.5 Good Performance Habit
## 5037 4.45 4.7 6.6 Improve Sleep
## 5038 4.77 6.7 6.2 Reduce Stress
## 5039 6.40 9.5 8.9 Reduce Stress
## 5040 2.70 7.7 5.5 Increase Study Time
## 5041 2.55 6.3 4.8 Increase Study Time
## 5042 2.44 5.9 1.2 Increase Study Time
## 5043 6.84 8.1 2.5 Good Performance Habit
## 5044 3.24 7.4 6.2 Reduce Stress
## 5045 5.30 6.8 6.6 Reduce Stress
## 5046 2.78 6.4 6.7 Increase Study Time
## 5047 4.93 8.1 5.2 Reduce Screen Time
## 5048 4.07 4.9 2.2 Improve Sleep
## 5049 3.60 6.3 1.0 Good Performance Habit
## 5050 7.30 6.4 3.3 Good Performance Habit
## 5051 5.26 6.3 4.1 Good Performance Habit
## 5052 3.16 8.2 6.1 Reduce Stress
## 5053 9.83 8.2 7.6 Reduce Stress
## 5054 3.20 6.2 7.5 Reduce Stress
## 5055 2.74 7.8 2.3 Increase Study Time
## 5056 1.73 6.5 2.3 Increase Study Time
## 5057 8.28 6.0 2.2 Good Performance Habit
## 5058 5.48 6.2 5.4 Good Performance Habit
## 5059 5.74 6.3 5.8 Good Performance Habit
## 5060 7.26 7.4 4.6 Good Performance Habit
## 5061 5.33 6.8 5.4 Reduce Screen Time
## 5062 6.51 5.7 6.8 Improve Sleep
## 5063 8.42 4.8 5.2 Improve Sleep
## 5064 5.59 7.3 7.4 Reduce Stress
## 5065 6.69 8.1 7.0 Reduce Stress
## 5066 5.51 6.0 4.9 Reduce Screen Time
## 5067 5.38 7.7 6.3 Reduce Stress
## 5068 7.93 8.5 3.0 Reduce Screen Time
## 5069 6.26 6.4 5.8 Good Performance Habit
## 5070 5.65 8.3 3.7 Reduce Screen Time
## 5071 1.34 6.5 8.1 Increase Study Time
## 5072 3.33 6.7 6.9 Reduce Stress
## 5073 3.73 5.7 1.0 Improve Sleep
## 5074 5.07 6.2 6.4 Reduce Stress
## 5075 5.85 6.5 6.3 Reduce Stress
## 5076 5.42 9.5 6.2 Reduce Stress
## 5077 4.78 6.0 1.0 Good Performance Habit
## 5078 5.79 7.2 7.2 Reduce Stress
## 5079 5.81 6.9 6.2 Reduce Stress
## 5080 6.88 6.5 3.5 Good Performance Habit
## 5081 1.58 6.3 7.1 Increase Study Time
## 5082 7.13 6.6 6.1 Reduce Stress
## 5083 8.99 5.8 7.0 Improve Sleep
## 5084 7.37 5.4 2.8 Improve Sleep
## 5085 4.25 6.2 2.4 Good Performance Habit
## 5086 3.31 8.5 5.3 Good Performance Habit
## 5087 4.98 7.0 3.0 Reduce Screen Time
## 5088 7.78 6.2 5.1 Good Performance Habit
## 5089 5.65 8.5 2.1 Good Performance Habit
## 5090 1.10 7.0 1.4 Increase Study Time
## 5091 0.94 7.0 5.2 Increase Study Time
## 5092 5.50 6.2 1.5 Reduce Screen Time
## 5093 9.82 8.1 6.2 Reduce Stress
## 5094 1.91 6.4 4.5 Increase Study Time
## 5095 3.81 5.6 5.4 Improve Sleep
## 5096 5.10 4.2 4.8 Improve Sleep
## 5097 5.67 5.5 7.5 Improve Sleep
## 5098 6.79 7.0 8.1 Reduce Stress
## 5099 1.87 6.3 4.5 Increase Study Time
## 5100 5.25 5.8 6.1 Improve Sleep
## 5101 3.72 7.0 8.2 Reduce Stress
## 5102 6.68 6.7 6.8 Reduce Stress
## 5103 5.79 5.5 3.8 Improve Sleep
## 5104 7.24 6.6 6.0 Reduce Screen Time
## 5105 2.58 6.9 4.7 Increase Study Time
## 5106 2.79 5.7 3.3 Increase Study Time
## 5107 3.58 7.3 4.7 Reduce Screen Time
## 5108 4.06 9.6 3.9 Good Performance Habit
## 5109 3.57 6.6 3.7 Good Performance Habit
## 5110 2.49 8.3 8.4 Increase Study Time
## 5111 3.83 7.1 4.5 Good Performance Habit
## 5112 1.74 6.2 4.1 Increase Study Time
## 5113 6.95 7.5 7.3 Reduce Stress
## 5114 4.00 7.7 3.6 Reduce Screen Time
## 5115 2.44 8.4 5.5 Increase Study Time
## 5116 5.32 8.5 5.0 Good Performance Habit
## 5117 1.75 8.6 3.5 Increase Study Time
## 5118 5.69 6.5 5.7 Good Performance Habit
## 5119 4.26 6.2 8.9 Reduce Stress
## 5120 8.41 8.2 1.4 Good Performance Habit
## 5121 6.03 4.9 3.3 Improve Sleep
## 5122 3.40 7.8 1.0 Reduce Screen Time
## 5123 6.74 7.7 4.5 Good Performance Habit
## 5124 5.21 7.4 1.0 Good Performance Habit
## 5125 6.28 4.9 3.0 Improve Sleep
## 5126 0.62 5.8 5.1 Increase Study Time
## 5127 4.05 4.7 10.0 Improve Sleep
## 5128 4.06 8.0 7.3 Reduce Stress
## 5129 7.52 6.0 6.1 Reduce Stress
## 5130 2.80 6.5 6.5 Increase Study Time
## 5131 5.65 7.5 3.0 Reduce Screen Time
## 5132 4.60 8.1 6.0 Good Performance Habit
## 5133 2.18 5.9 6.7 Increase Study Time
## 5134 3.82 6.4 2.8 Good Performance Habit
## 5135 6.03 6.8 7.5 Reduce Stress
## 5136 4.54 7.8 3.0 Good Performance Habit
## 5137 4.59 7.6 5.9 Good Performance Habit
## 5138 4.79 8.9 3.7 Good Performance Habit
## 5139 5.11 6.3 1.0 Good Performance Habit
## 5140 5.56 5.7 1.6 Improve Sleep
## 5141 4.78 5.6 6.7 Improve Sleep
## 5142 2.00 7.4 5.2 Increase Study Time
## 5143 4.50 7.1 6.7 Reduce Stress
## 5144 5.10 8.0 4.1 Reduce Screen Time
## 5145 8.20 5.8 4.5 Improve Sleep
## 5146 2.92 4.9 1.0 Increase Study Time
## 5147 8.04 5.8 4.6 Improve Sleep
## 5148 3.84 6.2 2.5 Reduce Screen Time
## 5149 8.10 8.1 4.9 Reduce Screen Time
## 5150 0.82 6.5 5.4 Increase Study Time
## 5151 4.35 7.6 4.2 Good Performance Habit
## 5152 0.23 7.2 8.5 Increase Study Time
## 5153 2.01 6.8 5.2 Increase Study Time
## 5154 4.02 6.8 3.5 Reduce Screen Time
## 5155 5.86 5.4 6.3 Improve Sleep
## 5156 3.35 7.7 5.0 Good Performance Habit
## 5157 5.38 8.7 3.5 Good Performance Habit
## 5158 3.25 7.3 3.2 Good Performance Habit
## 5159 8.10 5.6 5.1 Improve Sleep
## 5160 3.73 6.3 1.9 Good Performance Habit
## 5161 8.81 5.6 3.7 Improve Sleep
## 5162 8.49 7.3 5.4 Reduce Screen Time
## 5163 3.08 6.0 7.9 Reduce Stress
## 5164 5.94 7.2 6.4 Reduce Stress
## 5165 3.97 8.3 6.6 Reduce Stress
## 5166 7.82 6.2 1.0 Reduce Screen Time
## 5167 5.54 3.4 7.2 Improve Sleep
## 5168 8.53 8.3 5.1 Good Performance Habit
## 5169 4.53 6.9 3.9 Reduce Screen Time
## 5170 4.30 7.0 5.2 Good Performance Habit
## 5171 3.34 10.0 1.2 Good Performance Habit
## 5172 5.16 5.7 7.1 Improve Sleep
## 5173 5.73 7.0 4.4 Good Performance Habit
## 5174 5.03 5.7 1.7 Improve Sleep
## 5175 5.49 7.4 1.7 Reduce Screen Time
## 5176 6.40 8.8 2.8 Good Performance Habit
## 5177 4.74 6.3 5.6 Reduce Screen Time
## 5178 3.61 7.4 1.0 Good Performance Habit
## 5179 2.89 6.3 9.2 Increase Study Time
## 5180 3.78 6.0 2.8 Good Performance Habit
## 5181 4.23 8.4 6.5 Reduce Stress
## 5182 6.93 6.3 1.7 Reduce Screen Time
## 5183 6.73 5.9 5.6 Improve Sleep
## 5184 3.46 7.6 5.4 Good Performance Habit
## 5185 6.10 7.9 5.7 Good Performance Habit
## 5186 3.11 7.7 7.0 Reduce Stress
## 5187 6.57 5.5 5.8 Improve Sleep
## 5188 1.69 5.2 1.0 Increase Study Time
## 5189 6.87 7.7 6.0 Good Performance Habit
## 5190 4.56 9.0 3.4 Good Performance Habit
## 5191 5.41 5.6 3.1 Improve Sleep
## 5192 4.71 7.2 6.3 Reduce Stress
## 5193 2.83 6.8 9.4 Increase Study Time
## 5194 5.18 7.3 7.4 Reduce Stress
## 5195 4.95 8.9 2.7 Good Performance Habit
## 5196 6.44 6.5 4.7 Good Performance Habit
## 5197 6.18 7.4 5.5 Good Performance Habit
## 5198 7.39 7.3 2.3 Good Performance Habit
## 5199 6.04 6.5 7.8 Reduce Stress
## 5200 2.66 7.9 6.4 Increase Study Time
## 5201 6.49 7.9 6.8 Reduce Stress
## 5202 2.54 7.1 4.7 Increase Study Time
## 5203 3.51 8.2 3.0 Good Performance Habit
## 5204 5.08 6.1 5.6 Good Performance Habit
## 5205 3.28 6.8 6.4 Reduce Stress
## 5206 4.16 6.1 1.0 Good Performance Habit
## 5207 6.96 7.5 5.3 Reduce Screen Time
## 5208 3.73 7.1 3.7 Reduce Screen Time
## 5209 3.16 8.1 9.5 Reduce Stress
## 5210 2.37 8.3 5.6 Increase Study Time
## 5211 10.60 7.9 1.5 Good Performance Habit
## 5212 4.06 7.7 5.5 Good Performance Habit
## 5213 5.02 7.7 5.2 Good Performance Habit
## 5214 5.05 9.0 5.9 Good Performance Habit
## 5215 7.18 5.0 5.3 Improve Sleep
## 5216 3.82 7.9 6.0 Good Performance Habit
## 5217 3.16 7.1 1.8 Good Performance Habit
## 5218 4.20 5.5 5.1 Improve Sleep
## 5219 3.40 6.5 7.5 Reduce Stress
## 5220 2.10 5.9 5.6 Increase Study Time
## 5221 1.21 7.3 4.3 Increase Study Time
## 5222 5.04 7.6 4.7 Good Performance Habit
## 5223 4.12 7.2 4.2 Good Performance Habit
## 5224 7.74 5.7 6.3 Improve Sleep
## 5225 3.93 6.2 9.1 Reduce Stress
## 5226 4.25 6.9 5.0 Good Performance Habit
## 5227 7.38 6.1 5.8 Good Performance Habit
## 5228 1.60 5.8 3.3 Increase Study Time
## 5229 6.53 5.0 5.5 Improve Sleep
## 5230 3.31 6.7 5.9 Good Performance Habit
## 5231 2.69 8.0 2.6 Increase Study Time
## 5232 5.71 6.5 2.8 Good Performance Habit
## 5233 5.20 7.2 3.6 Good Performance Habit
## 5234 2.69 5.4 3.4 Increase Study Time
## 5235 5.45 6.2 4.1 Reduce Screen Time
## 5236 8.05 8.9 4.7 Good Performance Habit
## 5237 6.60 5.4 5.5 Improve Sleep
## 5238 5.20 9.8 8.3 Reduce Stress
## 5239 3.86 6.4 6.3 Reduce Stress
## 5240 4.79 5.0 5.0 Improve Sleep
## 5241 5.92 6.9 4.3 Good Performance Habit
## 5242 4.52 7.0 6.9 Reduce Stress
## 5243 5.88 7.7 5.4 Good Performance Habit
## 5244 6.91 8.1 4.7 Reduce Screen Time
## 5245 2.01 6.5 2.0 Increase Study Time
## 5246 5.30 7.6 6.1 Reduce Stress
## 5247 5.97 7.7 6.3 Reduce Stress
## 5248 4.43 8.1 6.0 Good Performance Habit
## 5249 3.68 9.0 5.3 Good Performance Habit
## 5250 7.97 8.0 2.3 Good Performance Habit
## 5251 4.79 7.1 5.3 Good Performance Habit
## 5252 4.79 7.3 4.2 Good Performance Habit
## 5253 3.89 7.9 4.8 Good Performance Habit
## 5254 4.37 5.5 2.8 Improve Sleep
## 5255 4.36 8.0 4.5 Good Performance Habit
## 5256 4.76 6.9 7.8 Reduce Stress
## 5257 1.98 6.3 3.5 Increase Study Time
## 5258 1.75 8.3 4.9 Increase Study Time
## 5259 3.72 8.3 5.4 Reduce Screen Time
## 5260 4.28 5.6 5.7 Improve Sleep
## 5261 3.81 6.6 2.7 Good Performance Habit
## 5262 6.37 6.3 4.2 Good Performance Habit
## 5263 4.89 4.7 4.9 Improve Sleep
## 5264 6.39 7.9 1.0 Good Performance Habit
## 5265 5.41 7.1 6.9 Reduce Stress
## 5266 0.50 5.0 7.8 Increase Study Time
## 5267 5.90 7.9 5.4 Good Performance Habit
## 5268 7.83 8.8 6.1 Reduce Stress
## 5269 5.25 6.3 7.0 Reduce Stress
## 5270 4.83 6.6 7.2 Reduce Stress
## 5271 2.66 7.1 7.6 Increase Study Time
## 5272 5.43 8.8 2.0 Good Performance Habit
## 5273 2.89 6.0 2.5 Increase Study Time
## 5274 1.47 5.6 2.3 Increase Study Time
## 5275 5.40 7.2 5.1 Reduce Screen Time
## 5276 6.61 8.0 5.9 Good Performance Habit
## 5277 4.39 6.0 5.7 Reduce Screen Time
## 5278 4.61 7.6 4.9 Good Performance Habit
## 5279 3.61 5.8 5.1 Improve Sleep
## 5280 8.13 6.6 3.0 Good Performance Habit
## 5281 5.71 7.0 4.8 Reduce Screen Time
## 5282 4.27 9.3 4.5 Good Performance Habit
## 5283 4.36 7.9 6.7 Reduce Stress
## 5284 5.22 6.0 4.4 Reduce Screen Time
## 5285 7.13 7.6 1.0 Good Performance Habit
## 5286 3.87 5.3 2.8 Improve Sleep
## 5287 3.19 6.3 5.4 Good Performance Habit
## 5288 5.56 5.1 1.0 Improve Sleep
## 5289 4.70 9.6 1.0 Good Performance Habit
## 5290 2.02 4.1 7.2 Increase Study Time
## 5291 4.69 6.4 4.6 Reduce Screen Time
## 5292 4.32 6.7 5.1 Good Performance Habit
## 5293 4.13 5.9 4.1 Improve Sleep
## 5294 5.23 8.3 3.4 Good Performance Habit
## 5295 5.41 6.0 5.7 Good Performance Habit
## 5296 8.27 5.7 6.4 Improve Sleep
## 5297 6.18 7.4 4.1 Good Performance Habit
## 5298 6.60 7.0 1.9 Good Performance Habit
## 5299 4.04 4.5 5.6 Improve Sleep
## 5300 4.94 6.3 6.4 Reduce Stress
## 5301 3.60 6.6 2.5 Reduce Screen Time
## 5302 3.56 9.8 7.8 Reduce Stress
## 5303 6.59 7.1 6.1 Reduce Stress
## 5304 9.25 10.0 8.4 Reduce Stress
## 5305 6.32 6.0 4.1 Good Performance Habit
## 5306 5.74 6.0 2.6 Reduce Screen Time
## 5307 6.00 7.7 5.5 Good Performance Habit
## 5308 6.52 8.9 7.5 Reduce Stress
## 5309 4.78 4.7 4.1 Improve Sleep
## 5310 4.82 7.3 3.5 Reduce Screen Time
## 5311 6.18 5.5 4.5 Improve Sleep
## 5312 8.12 7.6 4.4 Good Performance Habit
## 5313 5.10 5.9 3.6 Improve Sleep
## 5314 1.65 7.5 2.3 Increase Study Time
## 5315 6.49 7.0 7.5 Reduce Stress
## 5316 5.34 5.9 2.4 Improve Sleep
## 5317 3.37 8.9 1.8 Good Performance Habit
## 5318 3.29 8.0 1.2 Good Performance Habit
## 5319 1.00 6.1 6.0 Increase Study Time
## 5320 3.40 5.6 2.6 Improve Sleep
## 5321 4.50 6.3 5.3 Good Performance Habit
## 5322 5.95 5.8 4.1 Improve Sleep
## 5323 4.83 6.4 3.8 Good Performance Habit
## 5324 2.98 8.6 5.6 Increase Study Time
## 5325 4.12 5.3 5.7 Improve Sleep
## 5326 5.03 7.6 6.8 Reduce Stress
## 5327 6.10 8.3 10.0 Reduce Stress
## 5328 5.51 6.3 6.0 Good Performance Habit
## 5329 6.63 8.0 6.7 Reduce Stress
## 5330 1.14 8.3 6.2 Increase Study Time
## 5331 5.35 10.0 6.7 Reduce Stress
## 5332 5.52 6.4 3.4 Good Performance Habit
## 5333 3.08 7.4 7.5 Reduce Stress
## 5334 5.35 6.4 6.5 Reduce Stress
## 5335 3.92 5.6 2.1 Improve Sleep
## 5336 2.54 8.1 6.1 Increase Study Time
## 5337 2.39 8.8 3.7 Increase Study Time
## 5338 6.02 5.8 5.1 Improve Sleep
## 5339 6.10 6.2 4.9 Reduce Screen Time
## 5340 7.12 4.7 5.1 Improve Sleep
## 5341 6.44 7.1 9.0 Reduce Stress
## 5342 5.92 8.1 5.3 Good Performance Habit
## 5343 2.85 6.3 6.4 Increase Study Time
## 5344 4.57 7.3 7.0 Reduce Stress
## 5345 4.43 6.5 3.2 Good Performance Habit
## 5346 8.96 5.9 3.2 Improve Sleep
## 5347 3.25 6.4 2.3 Reduce Screen Time
## 5348 2.42 8.6 5.5 Increase Study Time
## 5349 2.98 8.8 5.7 Increase Study Time
## 5350 6.97 6.9 1.0 Reduce Screen Time
## 5351 3.72 6.3 4.2 Reduce Screen Time
## 5352 6.43 4.9 5.1 Improve Sleep
## 5353 3.97 8.1 5.3 Good Performance Habit
## 5354 7.03 8.3 2.3 Good Performance Habit
## 5355 1.93 6.0 3.5 Increase Study Time
## 5356 4.09 7.4 6.1 Reduce Stress
## 5357 6.16 7.4 5.7 Good Performance Habit
## 5358 4.52 7.5 5.0 Reduce Screen Time
## 5359 3.20 9.3 3.8 Good Performance Habit
## 5360 7.83 6.7 6.3 Reduce Stress
## 5361 2.20 8.4 6.7 Increase Study Time
## 5362 3.30 8.7 3.6 Reduce Screen Time
## 5363 7.23 8.3 5.1 Reduce Screen Time
## 5364 8.37 7.3 4.4 Good Performance Habit
## 5365 4.97 7.8 5.7 Good Performance Habit
## 5366 2.49 7.2 8.4 Increase Study Time
## 5367 2.44 9.0 5.8 Increase Study Time
## 5368 3.27 9.2 6.3 Reduce Stress
## 5369 4.80 6.1 8.3 Reduce Stress
## 5370 7.63 7.7 8.1 Reduce Stress
## 5371 6.78 7.0 5.3 Good Performance Habit
## 5372 6.89 6.3 5.1 Good Performance Habit
## 5373 4.00 5.9 3.2 Improve Sleep
## 5374 6.46 10.0 3.6 Good Performance Habit
## 5375 6.57 7.8 4.0 Good Performance Habit
## 5376 6.67 6.6 7.8 Reduce Stress
## 5377 4.96 8.1 6.0 Good Performance Habit
## 5378 4.18 6.8 3.3 Good Performance Habit
## 5379 7.20 8.5 7.5 Reduce Stress
## 5380 8.10 7.0 6.9 Reduce Stress
## 5381 4.56 5.2 6.2 Improve Sleep
## 5382 5.70 8.0 9.7 Reduce Stress
## 5383 7.17 7.9 7.0 Reduce Stress
## 5384 8.03 4.9 5.2 Improve Sleep
## 5385 8.49 7.9 4.3 Good Performance Habit
## 5386 5.07 7.6 3.3 Reduce Screen Time
## 5387 7.53 7.4 4.9 Reduce Screen Time
## 5388 2.64 6.9 2.0 Increase Study Time
## 5389 0.66 9.4 9.5 Increase Study Time
## 5390 4.16 7.6 5.3 Good Performance Habit
## 5391 5.71 4.6 8.5 Improve Sleep
## 5392 2.03 7.1 1.9 Increase Study Time
## 5393 4.72 7.5 6.6 Reduce Stress
## 5394 5.36 7.2 4.9 Good Performance Habit
## 5395 4.96 8.1 5.1 Reduce Screen Time
## 5396 5.54 6.8 1.0 Good Performance Habit
## 5397 7.22 6.4 5.1 Good Performance Habit
## 5398 4.49 5.3 5.3 Improve Sleep
## 5399 4.09 7.6 5.4 Reduce Screen Time
## 5400 6.09 8.4 5.3 Reduce Screen Time
## 5401 7.11 7.0 4.2 Reduce Screen Time
## 5402 4.15 6.2 6.7 Reduce Stress
## 5403 7.70 6.4 7.2 Reduce Stress
## 5404 6.47 7.1 6.8 Reduce Stress
## 5405 4.26 5.3 4.4 Improve Sleep
## 5406 4.94 7.0 4.1 Good Performance Habit
## 5407 3.45 4.4 2.7 Improve Sleep
## 5408 6.36 6.0 5.4 Good Performance Habit
## 5409 5.21 8.2 7.0 Reduce Stress
## 5410 8.93 7.9 4.6 Good Performance Habit
## 5411 0.53 6.9 4.3 Increase Study Time
## 5412 2.60 7.6 4.3 Increase Study Time
## 5413 3.99 7.5 6.9 Reduce Stress
## 5414 6.04 5.1 2.4 Improve Sleep
## 5415 4.29 6.3 2.8 Good Performance Habit
## 5416 3.59 9.1 5.6 Good Performance Habit
## 5417 5.84 6.8 2.6 Good Performance Habit
## 5418 4.17 7.4 3.3 Reduce Screen Time
## 5419 5.48 6.3 6.2 Reduce Stress
## 5420 6.77 6.5 8.3 Reduce Stress
## 5421 6.93 7.1 5.7 Reduce Screen Time
## 5422 1.93 6.6 3.4 Increase Study Time
## 5423 3.55 6.6 4.1 Reduce Screen Time
## 5424 5.88 9.6 6.4 Reduce Stress
## 5425 4.66 6.1 7.1 Reduce Stress
## 5426 3.49 10.0 8.1 Reduce Stress
## 5427 6.20 8.8 3.4 Reduce Screen Time
## 5428 5.18 3.7 5.6 Improve Sleep
## 5429 5.91 6.7 6.1 Reduce Stress
## 5430 6.78 9.4 3.6 Good Performance Habit
## 5431 4.27 7.2 5.6 Good Performance Habit
## 5432 7.03 5.9 5.4 Improve Sleep
## 5433 5.37 7.2 1.6 Good Performance Habit
## 5434 5.54 7.8 5.7 Good Performance Habit
## 5435 7.04 6.5 3.3 Good Performance Habit
## 5436 1.86 5.0 3.1 Increase Study Time
## 5437 1.77 7.9 4.5 Increase Study Time
## 5438 2.77 6.5 7.9 Increase Study Time
## 5439 6.71 8.7 6.5 Reduce Stress
## 5440 5.26 8.1 6.6 Reduce Stress
## 5441 3.93 7.2 6.5 Reduce Stress
## 5442 2.98 5.3 6.4 Increase Study Time
## 5443 1.68 7.3 2.9 Increase Study Time
## 5444 5.59 6.9 5.9 Good Performance Habit
## 5445 4.97 9.9 7.5 Reduce Stress
## 5446 5.77 6.1 7.4 Reduce Stress
## 5447 6.80 6.7 1.9 Reduce Screen Time
## 5448 5.57 6.0 3.2 Good Performance Habit
## 5449 7.67 6.8 5.6 Good Performance Habit
## 5450 4.22 6.5 4.5 Good Performance Habit
## 5451 7.96 8.6 7.1 Reduce Stress
## 5452 5.85 9.1 2.9 Good Performance Habit
## 5453 3.96 6.7 3.0 Good Performance Habit
## 5454 5.36 7.1 4.7 Reduce Screen Time
## 5455 9.26 7.6 7.4 Reduce Stress
## 5456 2.56 3.7 4.4 Increase Study Time
## 5457 3.83 7.8 3.0 Good Performance Habit
## 5458 4.18 5.7 3.5 Improve Sleep
## 5459 5.34 5.7 6.5 Improve Sleep
## 5460 5.13 7.4 1.0 Good Performance Habit
## 5461 8.66 4.9 3.9 Improve Sleep
## 5462 4.61 6.6 1.9 Reduce Screen Time
## 5463 6.30 6.8 4.7 Good Performance Habit
## 5464 4.01 7.2 7.0 Reduce Stress
## 5465 2.83 8.8 6.5 Increase Study Time
## 5466 4.70 6.0 3.6 Reduce Screen Time
## 5467 4.52 7.3 4.1 Good Performance Habit
## 5468 6.32 7.7 6.7 Reduce Stress
## 5469 7.57 7.1 1.3 Good Performance Habit
## 5470 4.11 6.9 2.7 Reduce Screen Time
## 5471 7.12 5.7 4.3 Improve Sleep
## 5472 3.01 3.4 3.9 Improve Sleep
## 5473 8.41 6.0 6.8 Reduce Stress
## 5474 2.12 7.6 4.5 Increase Study Time
## 5475 4.00 5.7 5.3 Improve Sleep
## 5476 5.47 7.2 3.4 Good Performance Habit
## 5477 4.25 9.5 6.2 Reduce Stress
## 5478 2.78 8.0 3.0 Increase Study Time
## 5479 6.35 7.0 2.7 Good Performance Habit
## 5480 3.03 7.6 5.7 Good Performance Habit
## 5481 6.85 6.4 5.1 Good Performance Habit
## 5482 2.14 8.4 6.9 Increase Study Time
## 5483 6.99 6.9 5.0 Good Performance Habit
## 5484 6.58 7.0 5.0 Good Performance Habit
## 5485 5.99 4.1 1.7 Improve Sleep
## 5486 7.01 6.0 3.3 Good Performance Habit
## 5487 4.57 5.8 9.2 Improve Sleep
## 5488 4.86 6.6 8.3 Reduce Stress
## 5489 7.21 4.8 2.7 Improve Sleep
## 5490 2.94 8.3 8.4 Increase Study Time
## 5491 4.44 8.5 3.5 Good Performance Habit
## 5492 4.54 7.3 3.3 Good Performance Habit
## 5493 4.51 8.5 3.6 Good Performance Habit
## 5494 4.42 6.9 7.7 Reduce Stress
## 5495 0.20 6.2 5.2 Increase Study Time
## 5496 4.91 5.1 10.0 Improve Sleep
## 5497 5.48 7.7 5.1 Good Performance Habit
## 5498 7.35 7.0 5.0 Good Performance Habit
## 5499 6.47 7.8 5.8 Good Performance Habit
## 5500 3.78 6.7 1.0 Good Performance Habit
## 5501 4.40 5.7 5.4 Improve Sleep
## 5502 3.11 5.8 7.3 Improve Sleep
## 5503 4.22 7.0 2.9 Reduce Screen Time
## 5504 3.74 7.6 5.8 Good Performance Habit
## 5505 7.05 7.3 8.3 Reduce Stress
## 5506 5.67 6.6 3.9 Good Performance Habit
## 5507 6.09 8.6 7.0 Reduce Stress
## 5508 4.20 7.1 5.9 Good Performance Habit
## 5509 4.62 6.2 3.8 Reduce Screen Time
## 5510 5.92 6.2 5.9 Good Performance Habit
## 5511 3.38 6.3 1.0 Good Performance Habit
## 5512 5.94 7.2 6.7 Reduce Stress
## 5513 6.62 6.8 5.2 Good Performance Habit
## 5514 3.80 7.2 4.7 Good Performance Habit
## 5515 4.92 6.3 2.4 Good Performance Habit
## 5516 3.27 7.7 7.9 Reduce Stress
## 5517 8.16 7.8 9.7 Reduce Stress
## 5518 5.81 8.0 5.0 Good Performance Habit
## 5519 7.07 7.7 5.5 Good Performance Habit
## 5520 4.53 6.0 5.5 Good Performance Habit
## 5521 3.25 7.0 5.2 Good Performance Habit
## 5522 4.78 6.0 5.4 Good Performance Habit
## 5523 7.65 7.9 8.4 Reduce Stress
## 5524 8.13 7.2 7.5 Reduce Stress
## 5525 6.49 6.9 4.8 Good Performance Habit
## 5526 4.95 6.7 1.0 Reduce Screen Time
## 5527 5.77 5.5 5.9 Improve Sleep
## 5528 7.10 7.1 4.5 Reduce Screen Time
## 5529 2.99 10.0 4.9 Increase Study Time
## 5530 6.72 7.3 6.0 Reduce Screen Time
## 5531 3.41 5.8 4.2 Improve Sleep
## 5532 5.52 7.6 6.9 Reduce Stress
## 5533 6.43 6.5 7.1 Reduce Stress
## 5534 5.56 6.9 3.9 Reduce Screen Time
## 5535 5.21 6.7 6.2 Reduce Stress
## 5536 7.53 6.4 1.4 Good Performance Habit
## 5537 4.24 8.2 3.9 Good Performance Habit
## 5538 4.35 5.5 2.4 Improve Sleep
## 5539 3.22 6.4 4.0 Reduce Screen Time
## 5540 5.39 8.0 5.9 Reduce Screen Time
## 5541 6.49 8.4 4.8 Good Performance Habit
## 5542 4.82 7.4 8.0 Reduce Stress
## 5543 1.32 8.9 6.7 Increase Study Time
## 5544 5.88 9.4 4.5 Good Performance Habit
## 5545 6.25 4.2 2.0 Improve Sleep
## 5546 3.37 5.1 5.4 Improve Sleep
## 5547 4.58 6.7 5.5 Reduce Screen Time
## 5548 5.09 5.1 1.0 Improve Sleep
## 5549 3.53 8.0 3.8 Good Performance Habit
## 5550 5.55 7.1 3.1 Reduce Screen Time
## 5551 5.19 6.0 3.1 Good Performance Habit
## 5552 2.78 7.2 6.9 Increase Study Time
## 5553 1.41 7.7 6.3 Increase Study Time
## 5554 3.23 8.5 4.7 Good Performance Habit
## 5555 7.76 5.1 4.8 Improve Sleep
## 5556 7.34 8.7 4.7 Good Performance Habit
## 5557 4.40 6.2 4.6 Reduce Screen Time
## 5558 2.94 5.9 1.1 Increase Study Time
## 5559 7.82 7.8 5.3 Good Performance Habit
## 5560 6.37 7.1 1.4 Good Performance Habit
## 5561 7.43 5.5 5.0 Improve Sleep
## 5562 8.61 6.6 2.8 Good Performance Habit
## 5563 5.87 5.9 1.6 Improve Sleep
## 5564 5.18 7.7 3.8 Good Performance Habit
## 5565 3.53 9.6 5.0 Good Performance Habit
## 5566 5.29 5.8 3.2 Improve Sleep
## 5567 3.09 8.9 6.6 Reduce Stress
## 5568 7.09 6.8 6.6 Reduce Stress
## 5569 4.58 5.6 6.2 Improve Sleep
## 5570 8.08 9.4 4.1 Good Performance Habit
## 5571 4.34 7.2 4.8 Good Performance Habit
## 5572 5.87 7.3 5.9 Reduce Screen Time
## 5573 3.49 6.1 7.1 Reduce Stress
## 5574 6.72 8.5 6.9 Reduce Stress
## 5575 3.41 6.4 4.1 Reduce Screen Time
## 5576 7.54 7.0 1.0 Good Performance Habit
## 5577 6.08 7.6 3.5 Good Performance Habit
## 5578 1.43 8.7 6.0 Increase Study Time
## 5579 2.32 7.8 6.7 Increase Study Time
## 5580 5.48 7.4 8.7 Reduce Stress
## 5581 4.90 6.9 3.6 Good Performance Habit
## 5582 8.90 6.0 6.9 Reduce Stress
## 5583 3.29 8.2 7.6 Reduce Stress
## 5584 4.60 8.7 7.1 Reduce Stress
## 5585 5.01 7.8 2.0 Reduce Screen Time
## 5586 5.46 8.0 4.5 Good Performance Habit
## 5587 8.37 6.9 7.7 Reduce Stress
## 5588 4.84 7.2 6.7 Reduce Stress
## 5589 1.91 5.5 6.2 Increase Study Time
## 5590 8.08 8.6 6.2 Reduce Stress
## 5591 5.84 9.7 5.0 Reduce Screen Time
## 5592 2.11 5.6 6.3 Increase Study Time
## 5593 3.71 5.5 7.4 Improve Sleep
## 5594 4.41 7.5 4.7 Reduce Screen Time
## 5595 5.27 8.1 5.9 Reduce Screen Time
## 5596 6.58 5.7 7.1 Improve Sleep
## 5597 4.55 7.3 3.6 Good Performance Habit
## 5598 4.00 7.1 3.1 Good Performance Habit
## 5599 3.12 6.3 3.3 Reduce Screen Time
## 5600 4.69 6.7 3.7 Good Performance Habit
## 5601 5.16 7.1 2.7 Reduce Screen Time
## 5602 5.93 6.6 6.0 Reduce Screen Time
## 5603 0.80 8.4 6.3 Increase Study Time
## 5604 3.28 7.9 5.9 Good Performance Habit
## 5605 5.94 4.7 5.8 Improve Sleep
## 5606 8.31 8.0 4.8 Good Performance Habit
## 5607 6.79 5.5 3.5 Improve Sleep
## 5608 0.56 4.8 6.8 Increase Study Time
## 5609 1.23 8.3 5.3 Increase Study Time
## 5610 6.11 6.7 5.1 Good Performance Habit
## 5611 5.09 7.1 6.5 Reduce Stress
## 5612 5.13 7.5 1.6 Good Performance Habit
## 5613 8.87 5.5 1.0 Improve Sleep
## 5614 2.94 9.3 5.6 Increase Study Time
## 5615 7.37 5.7 4.5 Improve Sleep
## 5616 5.23 10.0 9.8 Reduce Stress
## 5617 3.86 7.5 5.7 Good Performance Habit
## 5618 0.93 7.6 6.3 Increase Study Time
## 5619 2.71 7.0 6.4 Increase Study Time
## 5620 7.99 6.8 6.6 Reduce Stress
## 5621 5.19 5.8 4.8 Improve Sleep
## 5622 6.58 6.7 6.4 Reduce Stress
## 5623 6.15 6.2 3.8 Good Performance Habit
## 5624 4.70 7.4 6.2 Reduce Stress
## 5625 6.65 5.9 7.0 Improve Sleep
## 5626 5.63 7.8 7.5 Reduce Stress
## 5627 4.65 5.9 1.8 Improve Sleep
## 5628 4.38 6.5 4.8 Good Performance Habit
## 5629 3.59 8.1 4.9 Good Performance Habit
## 5630 5.57 6.8 4.1 Good Performance Habit
## 5631 4.64 8.2 4.2 Reduce Screen Time
## 5632 7.18 7.2 6.0 Good Performance Habit
## 5633 4.40 5.2 2.1 Improve Sleep
## 5634 3.23 5.5 5.4 Improve Sleep
## 5635 1.36 5.7 7.8 Increase Study Time
## 5636 6.49 4.5 5.2 Improve Sleep
## 5637 9.89 7.0 3.6 Reduce Screen Time
## 5638 4.94 8.2 1.0 Good Performance Habit
## 5639 0.67 8.3 6.6 Increase Study Time
## 5640 6.83 5.3 1.7 Improve Sleep
## 5641 3.70 6.5 3.8 Reduce Screen Time
## 5642 6.37 6.3 7.6 Reduce Stress
## 5643 5.72 4.7 1.0 Improve Sleep
## 5644 6.41 4.3 3.9 Improve Sleep
## 5645 5.25 6.7 6.5 Reduce Stress
## 5646 4.48 7.2 2.3 Good Performance Habit
## 5647 7.10 6.5 9.1 Reduce Stress
## 5648 4.44 5.0 3.7 Improve Sleep
## 5649 7.31 8.7 5.9 Good Performance Habit
## 5650 3.84 7.2 7.6 Reduce Stress
## 5651 5.30 7.0 4.2 Good Performance Habit
## 5652 3.55 5.9 1.0 Improve Sleep
## 5653 6.83 5.8 5.5 Improve Sleep
## 5654 3.69 9.5 3.0 Good Performance Habit
## 5655 3.40 9.6 4.5 Good Performance Habit
## 5656 6.86 7.9 3.4 Good Performance Habit
## 5657 5.67 6.0 2.7 Good Performance Habit
## 5658 4.84 4.5 5.8 Improve Sleep
## 5659 3.06 6.7 8.3 Reduce Stress
## 5660 4.91 6.0 7.2 Reduce Stress
## 5661 5.78 6.9 7.0 Reduce Stress
## 5662 6.30 7.8 5.5 Reduce Screen Time
## 5663 3.61 5.8 2.9 Improve Sleep
## 5664 5.98 6.9 6.2 Reduce Stress
## 5665 1.29 6.7 2.3 Increase Study Time
## 5666 5.11 6.7 4.7 Good Performance Habit
## 5667 3.21 4.6 5.5 Improve Sleep
## 5668 6.39 5.6 7.1 Improve Sleep
## 5669 4.15 6.5 4.7 Reduce Screen Time
## 5670 9.48 6.0 4.0 Good Performance Habit
## 5671 5.29 7.7 5.3 Good Performance Habit
## 5672 5.62 8.2 3.2 Good Performance Habit
## 5673 0.56 6.6 5.9 Increase Study Time
## 5674 2.28 9.7 2.8 Increase Study Time
## 5675 6.97 8.0 1.7 Good Performance Habit
## 5676 3.65 8.0 4.9 Good Performance Habit
## 5677 7.15 6.5 6.3 Reduce Stress
## 5678 3.58 6.6 6.0 Good Performance Habit
## 5679 6.16 7.4 3.8 Good Performance Habit
## 5680 3.40 5.4 6.2 Improve Sleep
## 5681 5.82 7.1 5.2 Good Performance Habit
## 5682 6.28 5.4 5.6 Improve Sleep
## 5683 6.73 6.4 3.4 Good Performance Habit
## 5684 3.52 8.5 7.4 Reduce Stress
## 5685 2.43 6.9 5.1 Increase Study Time
## 5686 6.05 6.7 3.3 Good Performance Habit
## 5687 5.41 7.8 1.2 Good Performance Habit
## 5688 6.28 5.1 2.1 Improve Sleep
## 5689 2.60 7.5 7.5 Increase Study Time
## 5690 6.43 6.8 4.2 Good Performance Habit
## 5691 4.64 6.6 2.3 Good Performance Habit
## 5692 2.87 7.1 5.7 Increase Study Time
## 5693 4.08 7.2 4.1 Good Performance Habit
## 5694 6.77 7.3 5.8 Good Performance Habit
## 5695 5.30 4.4 1.9 Improve Sleep
## 5696 5.26 5.9 5.3 Improve Sleep
## 5697 5.14 7.9 5.1 Reduce Screen Time
## 5698 4.22 5.4 4.4 Improve Sleep
## 5699 7.38 8.5 7.3 Reduce Stress
## 5700 5.03 6.6 4.3 Good Performance Habit
## 5701 2.15 5.5 4.3 Increase Study Time
## 5702 2.16 10.0 2.0 Increase Study Time
## 5703 3.90 7.8 4.8 Good Performance Habit
## 5704 4.24 8.1 2.6 Good Performance Habit
## 5705 6.42 6.0 6.3 Reduce Stress
## 5706 0.76 7.2 6.2 Increase Study Time
## 5707 6.48 5.2 3.5 Improve Sleep
## 5708 7.29 7.0 6.5 Reduce Stress
## 5709 4.05 7.1 3.8 Good Performance Habit
## 5710 7.45 8.2 7.6 Reduce Stress
## 5711 3.66 7.1 3.5 Good Performance Habit
## 5712 4.67 8.1 4.0 Good Performance Habit
## 5713 4.02 7.9 4.2 Reduce Screen Time
## 5714 8.14 9.6 7.4 Reduce Stress
## 5715 7.26 8.0 6.0 Good Performance Habit
## 5716 7.16 6.4 7.8 Reduce Stress
## 5717 2.76 7.7 5.9 Increase Study Time
## 5718 5.19 5.4 5.0 Improve Sleep
## 5719 2.76 6.7 2.7 Increase Study Time
## 5720 5.31 7.7 2.8 Reduce Screen Time
## 5721 6.11 7.7 3.1 Good Performance Habit
## 5722 7.71 6.9 5.1 Good Performance Habit
## 5723 4.72 5.8 3.6 Improve Sleep
## 5724 5.46 7.1 7.8 Reduce Stress
## 5725 4.73 4.5 5.9 Improve Sleep
## 5726 2.89 8.2 7.0 Increase Study Time
## 5727 8.29 7.8 3.6 Good Performance Habit
## 5728 5.77 5.4 4.9 Improve Sleep
## 5729 7.87 7.1 8.7 Reduce Stress
## 5730 6.68 7.0 4.6 Good Performance Habit
## 5731 2.49 6.5 4.6 Increase Study Time
## 5732 3.78 8.1 1.0 Good Performance Habit
## 5733 6.37 7.0 6.1 Reduce Stress
## 5734 6.71 4.6 3.1 Improve Sleep
## 5735 6.38 4.2 4.4 Improve Sleep
## 5736 5.02 8.9 6.0 Good Performance Habit
## 5737 6.72 7.0 7.3 Reduce Stress
## 5738 3.06 5.6 2.9 Improve Sleep
## 5739 4.52 5.3 5.7 Improve Sleep
## 5740 2.72 9.2 6.0 Increase Study Time
## 5741 6.98 7.9 4.1 Good Performance Habit
## 5742 5.76 4.7 4.7 Improve Sleep
## 5743 6.41 6.1 3.2 Good Performance Habit
## 5744 4.48 6.4 8.0 Reduce Stress
## 5745 1.16 7.6 4.4 Increase Study Time
## 5746 3.43 6.2 3.5 Good Performance Habit
## 5747 5.31 7.5 2.6 Good Performance Habit
## 5748 5.11 6.7 6.0 Reduce Screen Time
## 5749 6.83 5.3 2.4 Improve Sleep
## 5750 7.23 7.2 7.6 Reduce Stress
## 5751 3.89 7.1 6.4 Reduce Stress
## 5752 6.57 6.3 5.0 Good Performance Habit
## 5753 1.55 5.2 3.7 Increase Study Time
## 5754 6.33 6.3 4.3 Good Performance Habit
## 5755 0.79 4.7 1.2 Increase Study Time
## 5756 6.00 5.5 2.5 Improve Sleep
## 5757 0.45 6.8 3.8 Increase Study Time
## 5758 5.99 5.7 1.0 Improve Sleep
## 5759 8.18 6.9 1.0 Good Performance Habit
## 5760 4.66 5.6 4.3 Improve Sleep
## 5761 6.41 8.7 5.9 Reduce Screen Time
## 5762 7.22 7.8 3.5 Reduce Screen Time
## 5763 0.81 7.1 5.8 Increase Study Time
## 5764 1.14 6.7 6.5 Increase Study Time
## 5765 5.04 5.4 6.5 Improve Sleep
## 5766 2.81 6.5 4.2 Increase Study Time
## 5767 4.18 7.2 3.9 Reduce Screen Time
## 5768 10.47 4.4 5.3 Improve Sleep
## 5769 8.74 8.0 2.6 Good Performance Habit
## 5770 6.31 6.9 4.2 Good Performance Habit
## 5771 3.66 5.9 4.2 Improve Sleep
## 5772 6.12 7.4 5.3 Good Performance Habit
## 5773 5.74 8.2 5.9 Good Performance Habit
## 5774 4.71 6.6 8.8 Reduce Stress
## 5775 8.37 7.5 2.8 Good Performance Habit
## 5776 1.18 7.6 3.0 Increase Study Time
## 5777 8.23 6.6 5.0 Reduce Screen Time
## 5778 4.19 6.3 3.2 Good Performance Habit
## 5779 7.69 7.9 4.2 Good Performance Habit
## 5780 4.78 8.4 7.8 Reduce Stress
## 5781 3.89 6.8 4.7 Good Performance Habit
## 5782 3.69 6.1 1.4 Good Performance Habit
## 5783 5.57 8.3 6.7 Reduce Stress
## 5784 5.77 6.3 5.8 Good Performance Habit
## 5785 11.18 6.5 8.7 Reduce Stress
## 5786 8.28 7.2 1.0 Good Performance Habit
## 5787 4.97 8.0 4.9 Good Performance Habit
## 5788 2.59 6.8 3.7 Increase Study Time
## 5789 5.25 5.1 5.0 Improve Sleep
## 5790 6.23 6.3 6.7 Reduce Stress
## 5791 1.61 7.8 2.4 Increase Study Time
## 5792 5.08 7.8 3.2 Good Performance Habit
## 5793 7.69 8.0 5.7 Reduce Screen Time
## 5794 4.12 6.5 3.1 Good Performance Habit
## 5795 1.81 6.7 4.9 Increase Study Time
## 5796 6.61 7.9 3.5 Reduce Screen Time
## 5797 8.35 6.2 6.2 Reduce Stress
## 5798 4.65 8.6 6.2 Reduce Stress
## 5799 5.41 5.3 3.4 Improve Sleep
## 5800 7.46 8.9 6.6 Reduce Stress
## 5801 6.18 5.6 5.3 Improve Sleep
## 5802 3.68 7.1 2.6 Good Performance Habit
## 5803 4.39 6.5 6.3 Reduce Stress
## 5804 4.92 5.5 5.4 Improve Sleep
## 5805 5.10 8.2 3.4 Good Performance Habit
## 5806 7.48 7.5 3.3 Good Performance Habit
## 5807 3.01 7.6 8.1 Reduce Stress
## 5808 5.90 8.9 5.1 Good Performance Habit
## 5809 4.78 8.5 3.5 Good Performance Habit
## 5810 0.87 7.9 1.0 Increase Study Time
## 5811 6.59 7.6 4.5 Reduce Screen Time
## 5812 5.39 7.9 6.0 Good Performance Habit
## 5813 2.46 7.4 7.4 Increase Study Time
## 5814 1.47 6.4 5.0 Increase Study Time
## 5815 7.02 7.9 8.2 Reduce Stress
## 5816 8.53 5.2 4.6 Improve Sleep
## 5817 5.28 5.6 6.7 Improve Sleep
## 5818 4.64 7.1 6.7 Reduce Stress
## 5819 6.58 6.9 4.5 Good Performance Habit
## 5820 3.75 7.7 7.3 Reduce Stress
## 5821 4.03 6.2 8.7 Reduce Stress
## 5822 7.04 7.1 5.0 Good Performance Habit
## 5823 2.76 6.6 3.0 Increase Study Time
## 5824 7.44 9.2 2.9 Good Performance Habit
## 5825 5.70 6.2 4.5 Reduce Screen Time
## 5826 7.77 7.8 3.2 Good Performance Habit
## 5827 1.30 6.9 3.6 Increase Study Time
## 5828 7.75 8.6 6.1 Reduce Stress
## 5829 4.90 6.9 4.6 Reduce Screen Time
## 5830 6.39 6.2 5.7 Good Performance Habit
## 5831 3.43 5.9 4.4 Improve Sleep
## 5832 3.00 5.4 3.9 Improve Sleep
## 5833 7.45 4.3 6.1 Improve Sleep
## 5834 6.08 7.8 3.9 Good Performance Habit
## 5835 6.23 4.7 2.4 Improve Sleep
## 5836 6.50 5.4 4.0 Improve Sleep
## 5837 6.35 6.7 3.1 Good Performance Habit
## 5838 1.86 5.4 2.5 Increase Study Time
## 5839 4.47 6.8 3.9 Good Performance Habit
## 5840 4.40 6.4 6.2 Reduce Stress
## 5841 9.23 4.3 7.4 Improve Sleep
## 5842 7.85 7.8 6.9 Reduce Stress
## 5843 3.29 6.9 6.6 Reduce Stress
## 5844 2.05 6.7 3.7 Increase Study Time
## 5845 6.58 4.4 5.5 Improve Sleep
## 5846 6.29 6.9 6.2 Reduce Stress
## 5847 7.94 6.7 5.6 Good Performance Habit
## 5848 2.75 8.1 4.7 Increase Study Time
## 5849 8.54 7.8 2.3 Good Performance Habit
## 5850 5.52 8.9 1.5 Good Performance Habit
## 5851 7.77 5.5 2.6 Improve Sleep
## 5852 5.70 8.5 5.4 Good Performance Habit
## 5853 4.27 8.5 2.6 Reduce Screen Time
## 5854 3.50 6.2 6.4 Reduce Stress
## 5855 7.93 6.7 4.4 Good Performance Habit
## 5856 1.02 6.5 7.5 Increase Study Time
## 5857 7.36 6.8 5.8 Reduce Screen Time
## 5858 6.54 7.1 4.3 Good Performance Habit
## 5859 3.70 7.7 4.6 Good Performance Habit
## 5860 6.71 6.8 5.8 Good Performance Habit
## 5861 4.86 5.1 1.2 Improve Sleep
## 5862 2.45 7.7 4.2 Increase Study Time
## 5863 4.52 6.5 6.9 Reduce Stress
## 5864 6.31 7.4 5.0 Good Performance Habit
## 5865 5.20 7.9 3.9 Good Performance Habit
## 5866 3.53 5.1 6.1 Improve Sleep
## 5867 6.50 5.1 2.3 Improve Sleep
## 5868 6.62 6.9 7.4 Reduce Stress
## 5869 7.60 6.7 3.3 Good Performance Habit
## 5870 5.54 7.5 9.1 Reduce Stress
## 5871 8.17 5.6 4.6 Improve Sleep
## 5872 3.61 8.0 4.7 Good Performance Habit
## 5873 4.18 7.5 7.0 Reduce Stress
## 5874 2.13 5.1 5.7 Increase Study Time
## 5875 4.92 9.8 4.3 Good Performance Habit
## 5876 5.18 6.7 2.2 Good Performance Habit
## 5877 4.99 7.6 4.3 Good Performance Habit
## 5878 2.41 8.1 7.1 Increase Study Time
## 5879 7.13 6.7 4.2 Good Performance Habit
## 5880 1.55 5.7 4.5 Increase Study Time
## 5881 3.09 6.9 5.7 Reduce Screen Time
## 5882 1.05 5.8 8.1 Increase Study Time
## 5883 7.17 6.4 2.3 Reduce Screen Time
## 5884 6.66 7.3 3.4 Good Performance Habit
## 5885 4.62 6.2 5.2 Good Performance Habit
## 5886 5.69 7.8 5.0 Good Performance Habit
## 5887 2.45 7.7 4.5 Increase Study Time
## 5888 2.78 7.7 5.4 Increase Study Time
## 5889 2.99 8.7 4.1 Increase Study Time
## 5890 5.66 8.9 6.4 Reduce Stress
## 5891 4.20 7.4 2.7 Good Performance Habit
## 5892 5.36 7.0 4.7 Good Performance Habit
## 5893 2.80 7.9 6.1 Increase Study Time
## 5894 2.22 8.2 3.8 Increase Study Time
## 5895 5.87 5.1 5.7 Improve Sleep
## 5896 5.60 8.0 2.4 Good Performance Habit
## 5897 5.91 7.1 7.1 Reduce Stress
## 5898 3.70 7.7 6.0 Reduce Screen Time
## 5899 5.56 9.6 8.5 Reduce Stress
## 5900 1.79 9.9 7.0 Increase Study Time
## 5901 2.74 5.4 2.5 Increase Study Time
## 5902 5.67 7.9 4.1 Good Performance Habit
## 5903 3.05 8.2 6.0 Good Performance Habit
## 5904 2.48 5.9 3.2 Increase Study Time
## 5905 3.06 7.3 7.0 Reduce Stress
## 5906 8.44 8.5 6.5 Reduce Stress
## 5907 4.13 7.3 6.9 Reduce Stress
## 5908 5.64 8.2 1.0 Good Performance Habit
## 5909 4.68 5.5 1.3 Improve Sleep
## 5910 10.04 7.4 4.5 Good Performance Habit
## 5911 4.81 6.1 1.0 Reduce Screen Time
## 5912 7.21 8.9 4.4 Reduce Screen Time
## 5913 6.99 5.1 8.4 Improve Sleep
## 5914 5.94 6.3 4.8 Reduce Screen Time
## 5915 5.08 5.9 5.4 Improve Sleep
## 5916 1.92 5.3 1.4 Increase Study Time
## 5917 6.23 9.0 7.4 Reduce Stress
## 5918 9.59 8.1 3.0 Good Performance Habit
## 5919 6.20 7.0 5.3 Good Performance Habit
## 5920 9.30 6.4 4.3 Good Performance Habit
## 5921 6.59 6.5 3.1 Good Performance Habit
## 5922 7.00 6.1 5.3 Good Performance Habit
## 5923 4.13 7.8 6.8 Reduce Stress
## 5924 4.84 7.6 2.7 Good Performance Habit
## 5925 6.10 8.3 5.1 Reduce Screen Time
## 5926 7.44 7.4 2.8 Good Performance Habit
## 5927 2.99 7.3 3.8 Increase Study Time
## 5928 2.15 5.2 9.4 Increase Study Time
## 5929 4.87 8.3 5.3 Good Performance Habit
## 5930 4.88 7.7 3.8 Good Performance Habit
## 5931 6.07 8.0 4.1 Reduce Screen Time
## 5932 8.63 9.3 7.5 Reduce Stress
## 5933 3.95 6.5 6.4 Reduce Stress
## 5934 8.97 4.1 7.9 Improve Sleep
## 5935 6.28 6.9 5.4 Good Performance Habit
## 5936 5.16 8.4 6.9 Reduce Stress
## 5937 1.63 7.6 7.6 Increase Study Time
## 5938 8.18 7.7 3.0 Reduce Screen Time
## 5939 8.77 6.5 4.2 Good Performance Habit
## 5940 6.10 7.6 4.8 Good Performance Habit
## 5941 6.16 6.8 1.1 Good Performance Habit
## 5942 4.22 9.4 6.7 Reduce Stress
## 5943 1.12 7.3 3.0 Increase Study Time
## 5944 3.45 4.6 2.6 Improve Sleep
## 5945 2.10 5.3 4.0 Increase Study Time
## 5946 2.25 6.4 5.0 Increase Study Time
## 5947 3.33 7.2 8.0 Reduce Stress
## 5948 3.87 8.8 5.1 Good Performance Habit
## 5949 6.12 8.3 8.3 Reduce Stress
## 5950 7.75 6.2 6.8 Reduce Stress
## 5951 4.61 7.2 6.4 Reduce Stress
## 5952 6.69 7.5 5.6 Reduce Screen Time
## 5953 4.32 4.7 3.6 Improve Sleep
## 5954 4.40 10.0 5.7 Good Performance Habit
## 5955 5.74 6.1 6.8 Reduce Stress
## 5956 3.74 8.2 3.1 Good Performance Habit
## 5957 5.54 7.8 8.3 Reduce Stress
## 5958 4.02 4.5 1.6 Improve Sleep
## 5959 3.23 8.9 5.3 Good Performance Habit
## 5960 3.64 8.7 6.2 Reduce Stress
## 5961 8.14 7.1 5.7 Good Performance Habit
## 5962 5.52 9.6 4.3 Good Performance Habit
## 5963 4.07 7.7 1.8 Reduce Screen Time
## 5964 5.36 8.0 4.8 Good Performance Habit
## 5965 3.44 8.6 5.2 Good Performance Habit
## 5966 4.03 4.8 5.5 Improve Sleep
## 5967 4.26 8.4 1.9 Good Performance Habit
## 5968 1.55 7.4 6.1 Increase Study Time
## 5969 4.64 7.4 3.1 Reduce Screen Time
## 5970 5.87 5.2 5.2 Improve Sleep
## 5971 5.54 8.5 5.7 Good Performance Habit
## 5972 4.68 7.6 5.8 Good Performance Habit
## 5973 7.15 6.2 8.4 Reduce Stress
## 5974 3.30 7.1 6.0 Good Performance Habit
## 5975 7.24 8.7 6.4 Reduce Stress
## 5976 6.97 8.0 3.2 Good Performance Habit
## 5977 5.40 6.3 3.8 Good Performance Habit
## 5978 8.07 6.6 4.2 Reduce Screen Time
## 5979 3.37 10.0 2.5 Good Performance Habit
## 5980 5.49 5.3 6.1 Improve Sleep
## 5981 4.69 7.2 5.4 Good Performance Habit
## 5982 3.42 8.1 7.7 Reduce Stress
## 5983 4.33 8.6 5.9 Good Performance Habit
## 5984 5.80 5.8 2.3 Improve Sleep
## 5985 5.80 8.5 5.4 Reduce Screen Time
## 5986 6.26 7.5 1.9 Good Performance Habit
## 5987 3.63 7.1 7.2 Reduce Stress
## 5988 4.78 9.5 6.8 Reduce Stress
## 5989 4.75 9.2 4.8 Good Performance Habit
## 5990 3.65 8.1 2.0 Good Performance Habit
## 5991 4.95 7.8 8.8 Reduce Stress
## 5992 0.66 5.8 6.6 Increase Study Time
## 5993 2.62 6.1 2.4 Increase Study Time
## 5994 3.97 6.2 2.8 Good Performance Habit
## 5995 4.21 8.8 1.5 Good Performance Habit
## 5996 6.28 5.1 6.7 Improve Sleep
## 5997 3.85 7.2 6.2 Reduce Stress
## 5998 8.37 5.0 4.6 Improve Sleep
## 5999 2.01 6.1 1.3 Increase Study Time
## 6000 8.68 4.9 5.5 Improve Sleep
## 6001 3.05 5.9 2.9 Improve Sleep
## 6002 2.66 8.7 2.2 Increase Study Time
## 6003 3.46 7.6 3.9 Good Performance Habit
## 6004 3.71 8.0 4.6 Good Performance Habit
## 6005 4.36 6.9 5.0 Good Performance Habit
## 6006 4.03 6.5 4.6 Good Performance Habit
## 6007 5.87 7.3 8.6 Reduce Stress
## 6008 6.52 8.1 7.3 Reduce Stress
## 6009 2.82 5.5 5.8 Increase Study Time
## 6010 7.44 7.9 10.0 Reduce Stress
## 6011 5.46 7.0 5.2 Reduce Screen Time
## 6012 4.96 8.7 9.6 Reduce Stress
## 6013 6.66 7.3 3.9 Good Performance Habit
## 6014 4.77 7.0 2.4 Reduce Screen Time
## 6015 7.86 6.9 4.6 Good Performance Habit
## 6016 2.52 5.7 2.8 Increase Study Time
## 6017 7.40 7.6 4.7 Good Performance Habit
## 6018 4.01 5.7 4.1 Improve Sleep
## 6019 6.43 7.6 6.5 Reduce Stress
## 6020 4.06 7.9 4.5 Reduce Screen Time
## 6021 8.30 7.1 6.4 Reduce Stress
## 6022 5.74 8.4 7.9 Reduce Stress
## 6023 6.47 6.9 1.9 Good Performance Habit
## 6024 2.83 6.8 7.4 Increase Study Time
## 6025 1.99 5.1 5.1 Increase Study Time
## 6026 5.45 6.5 3.7 Good Performance Habit
## 6027 8.01 7.2 8.5 Reduce Stress
## 6028 5.30 9.5 6.0 Good Performance Habit
## 6029 2.02 5.2 2.7 Increase Study Time
## 6030 8.39 7.8 5.5 Good Performance Habit
## 6031 3.94 6.5 1.3 Good Performance Habit
## 6032 6.50 7.6 8.5 Reduce Stress
## 6033 3.33 9.4 8.5 Reduce Stress
## 6034 3.54 6.3 2.2 Good Performance Habit
## 6035 5.55 8.7 5.2 Reduce Screen Time
## 6036 0.68 5.1 3.5 Increase Study Time
## 6037 2.96 6.5 10.0 Increase Study Time
## 6038 4.11 7.4 9.2 Reduce Stress
## 6039 4.13 5.6 5.4 Improve Sleep
## 6040 1.68 6.0 8.5 Increase Study Time
## 6041 7.14 6.0 2.0 Reduce Screen Time
## 6042 4.49 10.0 2.7 Good Performance Habit
## 6043 4.58 7.5 3.2 Reduce Screen Time
## 6044 1.11 7.1 1.0 Increase Study Time
## 6045 4.71 7.7 7.2 Reduce Stress
## 6046 6.18 5.1 3.1 Improve Sleep
## 6047 6.58 7.5 3.3 Good Performance Habit
## 6048 6.07 7.1 7.6 Reduce Stress
## 6049 4.71 7.2 4.0 Good Performance Habit
## 6050 4.39 7.0 5.9 Good Performance Habit
## 6051 5.21 6.9 6.3 Reduce Stress
## 6052 6.18 6.9 7.8 Reduce Stress
## 6053 4.39 6.4 2.8 Reduce Screen Time
## 6054 4.41 6.7 3.9 Reduce Screen Time
## 6055 5.61 5.2 4.4 Improve Sleep
## 6056 4.33 6.6 4.4 Good Performance Habit
## 6057 5.35 5.7 3.4 Improve Sleep
## 6058 5.10 6.4 5.7 Good Performance Habit
## 6059 3.00 5.0 3.7 Improve Sleep
## 6060 7.82 7.6 7.2 Reduce Stress
## 6061 6.17 7.7 1.9 Reduce Screen Time
## 6062 3.02 6.0 6.6 Reduce Stress
## 6063 2.93 5.0 1.7 Increase Study Time
## 6064 3.85 8.2 6.1 Reduce Stress
## 6065 3.63 7.6 7.2 Reduce Stress
## 6066 2.86 7.6 1.0 Increase Study Time
## 6067 5.25 7.8 4.0 Reduce Screen Time
## 6068 4.16 7.3 2.1 Good Performance Habit
## 6069 2.92 6.5 7.3 Increase Study Time
## 6070 7.84 8.5 5.8 Good Performance Habit
## 6071 4.11 5.2 6.9 Improve Sleep
## 6072 5.43 9.3 5.8 Good Performance Habit
## 6073 2.14 7.0 6.0 Increase Study Time
## 6074 2.60 6.9 5.6 Increase Study Time
## 6075 2.78 5.4 2.2 Increase Study Time
## 6076 6.63 7.0 3.7 Good Performance Habit
## 6077 6.20 6.2 6.8 Reduce Stress
## 6078 4.31 7.0 7.8 Reduce Stress
## 6079 4.18 8.8 3.5 Good Performance Habit
## 6080 5.42 8.4 6.0 Reduce Screen Time
## 6081 3.06 6.9 6.7 Reduce Stress
## 6082 4.28 6.7 1.6 Good Performance Habit
## 6083 6.64 6.1 2.8 Good Performance Habit
## 6084 2.99 8.6 3.0 Increase Study Time
## 6085 6.04 5.5 8.4 Improve Sleep
## 6086 4.56 6.9 6.6 Reduce Stress
## 6087 5.12 4.0 3.5 Improve Sleep
## 6088 4.46 4.9 4.9 Improve Sleep
## 6089 6.44 7.5 5.9 Good Performance Habit
## 6090 6.48 6.5 7.3 Reduce Stress
## 6091 5.84 7.0 5.3 Good Performance Habit
## 6092 1.54 6.9 9.9 Increase Study Time
## 6093 5.00 8.8 4.5 Good Performance Habit
## 6094 7.09 5.4 6.7 Improve Sleep
## 6095 2.76 10.0 4.5 Increase Study Time
## 6096 1.73 6.4 3.4 Increase Study Time
## 6097 4.32 7.7 4.9 Reduce Screen Time
## 6098 6.35 7.6 5.1 Good Performance Habit
## 6099 2.24 9.7 6.0 Increase Study Time
## 6100 5.41 6.4 5.2 Good Performance Habit
## 6101 4.19 7.0 8.8 Reduce Stress
## 6102 4.67 6.1 4.4 Good Performance Habit
## 6103 5.56 7.8 6.7 Reduce Stress
## 6104 4.40 7.7 3.9 Good Performance Habit
## 6105 3.63 5.2 3.1 Improve Sleep
## 6106 5.09 4.3 4.8 Improve Sleep
## 6107 7.80 6.3 4.7 Good Performance Habit
## 6108 5.94 7.7 3.8 Good Performance Habit
## 6109 6.13 5.7 6.7 Improve Sleep
## 6110 2.93 5.1 2.4 Increase Study Time
## 6111 3.74 6.6 8.5 Reduce Stress
## 6112 2.15 6.1 6.8 Increase Study Time
## 6113 6.60 7.9 5.1 Reduce Screen Time
## 6114 6.75 7.1 3.6 Reduce Screen Time
## 6115 5.63 6.8 3.9 Good Performance Habit
## 6116 6.32 6.0 4.1 Reduce Screen Time
## 6117 3.95 6.1 5.2 Good Performance Habit
## 6118 4.06 7.3 4.9 Good Performance Habit
## 6119 7.17 7.8 6.0 Good Performance Habit
## 6120 4.00 8.3 3.7 Good Performance Habit
## 6121 6.81 7.4 5.3 Good Performance Habit
## 6122 8.07 8.1 3.0 Good Performance Habit
## 6123 2.53 4.7 3.9 Increase Study Time
## 6124 3.06 7.3 8.0 Reduce Stress
## 6125 8.16 6.6 4.0 Good Performance Habit
## 6126 6.77 6.1 6.3 Reduce Stress
## 6127 7.89 8.9 7.3 Reduce Stress
## 6128 8.14 7.3 1.0 Reduce Screen Time
## 6129 4.24 6.1 5.1 Good Performance Habit
## 6130 8.82 8.5 7.1 Reduce Stress
## 6131 7.57 6.7 8.9 Reduce Stress
## 6132 6.87 5.8 5.2 Improve Sleep
## 6133 5.50 7.6 5.8 Good Performance Habit
## 6134 4.15 7.5 5.6 Reduce Screen Time
## 6135 3.35 5.8 3.9 Improve Sleep
## 6136 2.02 8.5 6.7 Increase Study Time
## 6137 3.19 9.1 4.6 Good Performance Habit
## 6138 3.33 8.2 1.2 Good Performance Habit
## 6139 5.23 6.2 7.0 Reduce Stress
## 6140 3.47 8.6 4.9 Good Performance Habit
## 6141 1.37 8.5 7.3 Increase Study Time
## 6142 5.20 7.2 5.6 Good Performance Habit
## 6143 0.80 8.4 7.2 Increase Study Time
## 6144 4.17 6.1 4.3 Good Performance Habit
## 6145 6.20 6.8 1.0 Reduce Screen Time
## 6146 1.81 7.1 6.3 Increase Study Time
## 6147 2.45 6.7 1.0 Increase Study Time
## 6148 4.73 6.0 5.3 Good Performance Habit
## 6149 7.49 4.7 5.9 Improve Sleep
## 6150 4.59 8.3 3.6 Good Performance Habit
## 6151 3.95 5.0 7.7 Improve Sleep
## 6152 5.37 7.0 3.6 Good Performance Habit
## 6153 1.37 8.3 3.8 Increase Study Time
## 6154 1.84 6.4 7.7 Increase Study Time
## 6155 6.20 8.0 5.9 Good Performance Habit
## 6156 6.42 9.6 6.9 Reduce Stress
## 6157 6.02 7.9 2.6 Reduce Screen Time
## 6158 5.11 8.6 1.4 Good Performance Habit
## 6159 5.74 8.2 5.6 Good Performance Habit
## 6160 1.35 8.3 6.3 Increase Study Time
## 6161 2.68 6.9 5.6 Increase Study Time
## 6162 4.06 8.1 6.6 Reduce Stress
## 6163 6.77 6.8 7.8 Reduce Stress
## 6164 5.23 4.9 5.2 Improve Sleep
## 6165 4.91 9.2 6.4 Reduce Stress
## 6166 2.61 7.7 2.5 Increase Study Time
## 6167 5.10 7.4 7.0 Reduce Stress
## 6168 5.61 6.7 5.5 Good Performance Habit
## 6169 6.00 7.4 4.7 Good Performance Habit
## 6170 4.60 3.6 4.7 Improve Sleep
## 6171 8.93 5.7 8.0 Improve Sleep
## 6172 2.56 7.9 2.4 Increase Study Time
## 6173 6.67 6.2 4.2 Good Performance Habit
## 6174 2.33 6.3 5.7 Increase Study Time
## 6175 2.35 6.7 2.5 Increase Study Time
## 6176 6.31 5.4 4.4 Improve Sleep
## 6177 4.10 5.4 1.0 Improve Sleep
## 6178 3.39 7.9 6.0 Good Performance Habit
## 6179 4.99 8.9 5.9 Reduce Screen Time
## 6180 10.00 7.2 9.1 Reduce Stress
## 6181 3.71 7.0 2.4 Good Performance Habit
## 6182 4.26 6.2 4.8 Good Performance Habit
## 6183 7.38 6.9 4.6 Reduce Screen Time
## 6184 3.81 9.4 8.1 Reduce Stress
## 6185 9.72 6.9 4.0 Good Performance Habit
## 6186 2.38 8.0 6.5 Increase Study Time
## 6187 4.51 6.2 1.0 Good Performance Habit
## 6188 6.90 8.5 6.8 Reduce Stress
## 6189 4.49 7.2 3.5 Good Performance Habit
## 6190 3.96 7.4 3.8 Reduce Screen Time
## 6191 2.13 7.1 6.9 Increase Study Time
## 6192 4.68 5.9 4.4 Improve Sleep
## 6193 6.66 5.6 4.6 Improve Sleep
## 6194 4.41 7.8 4.3 Good Performance Habit
## 6195 2.96 8.0 5.5 Increase Study Time
## 6196 7.60 7.4 6.5 Reduce Stress
## 6197 6.63 6.0 4.8 Reduce Screen Time
## 6198 6.09 7.4 3.6 Good Performance Habit
## 6199 4.50 8.6 3.1 Good Performance Habit
## 6200 3.22 7.8 5.0 Good Performance Habit
## 6201 7.22 5.4 5.3 Improve Sleep
## 6202 5.06 7.0 7.3 Reduce Stress
## 6203 4.18 6.8 5.8 Good Performance Habit
## 6204 4.56 7.6 1.1 Good Performance Habit
## 6205 5.70 7.6 6.4 Reduce Stress
## 6206 6.61 5.8 1.0 Improve Sleep
## 6207 4.88 6.4 5.2 Good Performance Habit
## 6208 4.16 5.5 6.1 Improve Sleep
## 6209 2.66 6.1 4.9 Increase Study Time
## 6210 4.36 7.7 4.2 Good Performance Habit
## 6211 4.49 6.3 5.8 Good Performance Habit
## 6212 5.55 6.9 7.3 Reduce Stress
## 6213 4.87 6.2 4.9 Good Performance Habit
## 6214 3.84 6.8 4.6 Good Performance Habit
## 6215 4.68 5.2 3.7 Improve Sleep
## 6216 6.15 7.5 3.3 Reduce Screen Time
## 6217 4.71 6.6 3.6 Reduce Screen Time
## 6218 4.56 7.7 9.3 Reduce Stress
## 6219 4.41 7.1 4.2 Reduce Screen Time
## 6220 4.25 5.9 6.2 Improve Sleep
## 6221 5.59 8.3 6.5 Reduce Stress
## 6222 6.13 8.4 5.8 Good Performance Habit
## 6223 4.33 7.5 4.1 Good Performance Habit
## 6224 4.53 7.4 6.5 Reduce Stress
## 6225 5.68 7.4 6.1 Reduce Stress
## 6226 6.41 6.5 4.5 Good Performance Habit
## 6227 7.64 6.4 7.4 Reduce Stress
## 6228 2.27 8.0 7.1 Increase Study Time
## 6229 6.60 6.6 4.1 Reduce Screen Time
## 6230 3.96 6.9 7.6 Reduce Stress
## 6231 6.15 5.7 7.5 Improve Sleep
## 6232 6.73 10.0 7.8 Reduce Stress
## 6233 8.56 8.0 3.4 Good Performance Habit
## 6234 3.92 6.5 1.0 Good Performance Habit
## 6235 6.94 9.6 7.1 Reduce Stress
## 6236 0.13 6.3 5.8 Increase Study Time
## 6237 5.03 7.9 2.5 Good Performance Habit
## 6238 0.57 5.2 1.4 Increase Study Time
## 6239 3.51 7.5 4.5 Reduce Screen Time
## 6240 2.70 8.5 1.4 Increase Study Time
## 6241 2.04 4.9 5.4 Increase Study Time
## 6242 4.87 6.7 7.3 Reduce Stress
## 6243 2.74 4.6 5.0 Increase Study Time
## 6244 2.63 6.9 5.0 Increase Study Time
## 6245 3.33 5.5 3.4 Improve Sleep
## 6246 3.87 6.9 2.8 Good Performance Habit
## 6247 5.92 6.5 5.4 Good Performance Habit
## 6248 4.02 7.9 6.3 Reduce Stress
## 6249 3.06 5.0 3.6 Improve Sleep
## 6250 1.52 7.7 4.3 Increase Study Time
## 6251 6.04 6.0 4.7 Good Performance Habit
## 6252 5.46 7.9 4.0 Good Performance Habit
## 6253 6.11 6.0 5.3 Good Performance Habit
## 6254 3.57 8.3 2.5 Reduce Screen Time
## 6255 7.27 8.0 5.9 Good Performance Habit
## 6256 5.99 8.5 5.9 Good Performance Habit
## 6257 9.38 6.4 5.3 Good Performance Habit
## 6258 4.17 8.1 1.0 Good Performance Habit
## 6259 6.55 5.2 5.1 Improve Sleep
## 6260 8.10 7.2 3.1 Good Performance Habit
## 6261 4.44 7.8 5.2 Reduce Screen Time
## 6262 4.85 7.5 5.7 Good Performance Habit
## 6263 3.92 8.3 2.2 Reduce Screen Time
## 6264 4.37 5.8 7.8 Improve Sleep
## 6265 6.49 7.7 5.9 Good Performance Habit
## 6266 5.31 6.4 7.2 Reduce Stress
## 6267 2.83 5.0 6.3 Increase Study Time
## 6268 9.78 7.0 6.1 Reduce Stress
## 6269 3.50 5.3 5.7 Improve Sleep
## 6270 7.21 6.9 3.2 Good Performance Habit
## 6271 5.03 5.0 5.7 Improve Sleep
## 6272 6.27 5.6 6.1 Improve Sleep
## 6273 6.07 7.1 4.3 Good Performance Habit
## 6274 6.53 7.5 7.7 Reduce Stress
## 6275 6.52 5.3 7.1 Improve Sleep
## 6276 8.35 7.1 5.1 Good Performance Habit
## 6277 3.61 5.3 4.1 Improve Sleep
## 6278 2.36 7.3 6.6 Increase Study Time
## 6279 1.66 7.0 9.4 Increase Study Time
## 6280 0.91 7.2 7.9 Increase Study Time
## 6281 5.93 5.9 2.5 Improve Sleep
## 6282 1.49 7.4 3.1 Increase Study Time
## 6283 1.76 6.9 4.0 Increase Study Time
## 6284 5.41 5.5 6.9 Improve Sleep
## 6285 4.36 6.9 7.0 Reduce Stress
## 6286 5.10 6.4 3.6 Reduce Screen Time
## 6287 1.47 8.2 5.4 Increase Study Time
## 6288 2.38 5.8 3.4 Increase Study Time
## 6289 1.86 7.2 3.0 Increase Study Time
## 6290 4.85 8.0 5.2 Good Performance Habit
## 6291 4.81 6.7 4.4 Reduce Screen Time
## 6292 5.68 6.1 4.8 Good Performance Habit
## 6293 7.31 5.8 9.1 Improve Sleep
## 6294 11.75 5.1 1.0 Improve Sleep
## 6295 3.85 7.7 5.6 Good Performance Habit
## 6296 6.28 9.6 5.0 Good Performance Habit
## 6297 6.69 7.4 6.0 Good Performance Habit
## 6298 4.68 6.7 7.2 Reduce Stress
## 6299 2.92 7.1 7.6 Increase Study Time
## 6300 6.61 5.2 4.7 Improve Sleep
## 6301 6.67 5.9 6.7 Improve Sleep
## 6302 6.01 7.8 3.7 Reduce Screen Time
## 6303 3.47 7.0 4.8 Good Performance Habit
## 6304 0.49 7.8 3.3 Increase Study Time
## 6305 2.84 5.7 6.1 Increase Study Time
## 6306 7.29 8.5 5.5 Good Performance Habit
## 6307 7.27 6.4 3.2 Good Performance Habit
## 6308 2.89 7.2 6.1 Increase Study Time
## 6309 5.41 6.2 6.4 Reduce Stress
## 6310 7.49 8.1 5.9 Good Performance Habit
## 6311 7.55 7.1 3.2 Reduce Screen Time
## 6312 3.08 6.7 7.9 Reduce Stress
## 6313 4.55 5.8 7.9 Improve Sleep
## 6314 4.79 5.9 8.2 Improve Sleep
## 6315 2.73 6.6 5.9 Increase Study Time
## 6316 8.38 9.4 5.3 Good Performance Habit
## 6317 1.41 5.7 2.0 Increase Study Time
## 6318 5.74 8.3 5.5 Good Performance Habit
## 6319 6.96 5.2 4.3 Improve Sleep
## 6320 5.83 9.7 8.8 Reduce Stress
## 6321 6.41 5.8 3.5 Improve Sleep
## 6322 0.47 7.9 8.2 Increase Study Time
## 6323 5.04 6.0 1.0 Good Performance Habit
## 6324 5.54 6.4 6.1 Reduce Stress
## 6325 5.51 6.8 2.9 Good Performance Habit
## 6326 2.32 5.8 5.0 Increase Study Time
## 6327 4.48 5.6 5.4 Improve Sleep
## 6328 3.31 6.0 3.1 Good Performance Habit
## 6329 7.73 7.3 3.5 Good Performance Habit
## 6330 3.65 5.7 4.3 Improve Sleep
## 6331 4.69 8.1 3.3 Good Performance Habit
## 6332 4.60 6.7 6.4 Reduce Stress
## 6333 4.54 4.4 3.9 Improve Sleep
## 6334 8.34 8.9 4.7 Reduce Screen Time
## 6335 7.86 7.3 3.0 Good Performance Habit
## 6336 5.72 6.9 4.8 Reduce Screen Time
## 6337 4.30 4.4 4.6 Improve Sleep
## 6338 4.09 5.6 6.8 Improve Sleep
## 6339 1.26 4.9 8.4 Increase Study Time
## 6340 5.12 5.4 3.7 Improve Sleep
## 6341 5.60 6.9 5.4 Good Performance Habit
## 6342 4.63 7.4 4.6 Good Performance Habit
## 6343 3.13 8.6 4.6 Reduce Screen Time
## 6344 7.34 6.8 6.5 Reduce Stress
## 6345 6.52 6.7 6.0 Reduce Screen Time
## 6346 5.30 6.6 4.9 Good Performance Habit
## 6347 8.13 7.8 2.1 Good Performance Habit
## 6348 5.49 8.5 4.6 Good Performance Habit
## 6349 8.62 5.4 9.0 Improve Sleep
## 6350 4.63 5.3 5.4 Improve Sleep
## 6351 5.30 5.1 5.8 Improve Sleep
## 6352 3.81 6.9 2.3 Good Performance Habit
## 6353 6.81 8.8 3.9 Reduce Screen Time
## 6354 4.04 7.3 1.0 Reduce Screen Time
## 6355 5.81 7.8 4.7 Good Performance Habit
## 6356 5.26 6.2 5.2 Good Performance Habit
## 6357 3.52 7.3 6.5 Reduce Stress
## 6358 9.40 6.3 6.1 Reduce Stress
## 6359 7.19 7.3 6.8 Reduce Stress
## 6360 4.54 6.5 8.0 Reduce Stress
## 6361 6.70 7.1 6.0 Reduce Screen Time
## 6362 5.71 8.5 6.5 Reduce Stress
## 6363 4.15 5.7 2.4 Improve Sleep
## 6364 8.67 7.3 4.3 Good Performance Habit
## 6365 6.68 6.7 6.6 Reduce Stress
## 6366 6.24 5.4 4.5 Improve Sleep
## 6367 6.07 8.1 2.6 Good Performance Habit
## 6368 6.37 8.4 6.8 Reduce Stress
## 6369 6.56 7.5 2.6 Good Performance Habit
## 6370 5.54 6.9 4.9 Good Performance Habit
## 6371 5.44 7.2 8.0 Reduce Stress
## 6372 5.30 7.8 4.1 Good Performance Habit
## 6373 2.06 8.8 5.0 Increase Study Time
## 6374 4.70 6.5 2.6 Good Performance Habit
## 6375 7.49 8.0 9.6 Reduce Stress
## 6376 8.12 7.3 4.3 Good Performance Habit
## 6377 5.46 5.9 1.8 Improve Sleep
## 6378 3.48 7.4 2.2 Reduce Screen Time
## 6379 7.08 6.6 4.3 Good Performance Habit
## 6380 3.46 7.6 7.2 Reduce Stress
## 6381 3.02 6.6 4.8 Good Performance Habit
## 6382 2.28 6.2 2.9 Increase Study Time
## 6383 1.00 6.2 2.1 Increase Study Time
## 6384 8.79 6.8 7.5 Reduce Stress
## 6385 5.13 7.8 3.0 Good Performance Habit
## 6386 1.28 7.3 3.6 Increase Study Time
## 6387 3.42 7.2 4.0 Good Performance Habit
## 6388 1.65 6.2 3.8 Increase Study Time
## 6389 6.73 5.8 4.9 Improve Sleep
## 6390 3.72 7.9 4.6 Good Performance Habit
## 6391 3.51 6.9 4.0 Good Performance Habit
## 6392 6.27 6.7 7.4 Reduce Stress
## 6393 8.20 5.6 6.0 Improve Sleep
## 6394 3.46 9.1 2.4 Good Performance Habit
## 6395 4.87 6.9 5.2 Good Performance Habit
## 6396 3.03 6.7 5.7 Good Performance Habit
## 6397 6.81 8.2 7.7 Reduce Stress
## 6398 5.46 6.5 1.0 Good Performance Habit
## 6399 5.21 7.5 5.6 Reduce Screen Time
## 6400 3.35 8.1 4.7 Reduce Screen Time
## 6401 7.91 7.1 2.3 Good Performance Habit
## 6402 4.37 7.5 5.3 Good Performance Habit
## 6403 7.30 7.1 6.0 Good Performance Habit
## 6404 7.39 6.4 5.2 Good Performance Habit
## 6405 2.68 7.7 6.1 Increase Study Time
## 6406 4.57 8.1 4.4 Good Performance Habit
## 6407 5.46 8.0 4.1 Good Performance Habit
## 6408 2.82 6.3 6.0 Increase Study Time
## 6409 4.77 8.2 5.3 Good Performance Habit
## 6410 5.59 5.8 1.0 Improve Sleep
## 6411 1.69 5.9 4.1 Increase Study Time
## 6412 4.36 5.3 6.6 Improve Sleep
## 6413 5.60 6.9 4.7 Good Performance Habit
## 6414 4.04 7.0 5.0 Reduce Screen Time
## 6415 3.79 5.7 3.0 Improve Sleep
## 6416 2.17 6.5 5.5 Increase Study Time
## 6417 4.99 6.6 7.3 Reduce Stress
## 6418 5.36 8.3 6.0 Good Performance Habit
## 6419 4.75 7.5 2.5 Good Performance Habit
## 6420 7.66 6.3 7.3 Reduce Stress
## 6421 4.97 5.4 3.4 Improve Sleep
## 6422 4.12 5.5 6.5 Improve Sleep
## 6423 8.41 9.2 7.0 Reduce Stress
## 6424 6.35 7.0 6.1 Reduce Stress
## 6425 7.15 8.1 2.9 Good Performance Habit
## 6426 7.54 7.6 1.6 Good Performance Habit
## 6427 3.95 7.8 4.3 Good Performance Habit
## 6428 3.05 6.8 2.4 Good Performance Habit
## 6429 8.27 5.9 5.6 Improve Sleep
## 6430 1.20 5.6 10.0 Increase Study Time
## 6431 3.93 8.1 4.5 Good Performance Habit
## 6432 8.16 4.9 7.7 Improve Sleep
## 6433 3.67 5.6 6.6 Improve Sleep
## 6434 6.48 7.8 1.6 Good Performance Habit
## 6435 3.40 6.4 5.5 Good Performance Habit
## 6436 9.71 7.6 1.7 Good Performance Habit
## 6437 4.84 6.9 7.3 Reduce Stress
## 6438 6.62 7.8 2.9 Good Performance Habit
## 6439 2.35 7.2 4.2 Increase Study Time
## 6440 6.47 5.3 4.8 Improve Sleep
## 6441 6.37 8.5 5.3 Good Performance Habit
## 6442 4.09 6.2 5.8 Reduce Screen Time
## 6443 6.37 7.6 5.2 Reduce Screen Time
## 6444 4.59 7.1 4.0 Reduce Screen Time
## 6445 5.80 7.3 2.7 Good Performance Habit
## 6446 4.00 4.3 3.8 Improve Sleep
## 6447 4.10 6.5 1.3 Reduce Screen Time
## 6448 2.56 9.2 5.5 Increase Study Time
## 6449 5.89 8.2 2.5 Reduce Screen Time
## 6450 4.59 6.1 2.6 Good Performance Habit
## 6451 3.62 8.7 3.6 Good Performance Habit
## 6452 8.29 8.4 6.1 Reduce Stress
## 6453 5.05 7.6 4.0 Good Performance Habit
## 6454 4.73 6.8 7.4 Reduce Stress
## 6455 3.57 7.5 1.2 Reduce Screen Time
## 6456 6.87 6.8 4.9 Good Performance Habit
## 6457 5.32 8.7 3.9 Good Performance Habit
## 6458 3.37 7.1 5.6 Good Performance Habit
## 6459 4.52 7.7 3.8 Good Performance Habit
## 6460 6.17 6.2 3.4 Good Performance Habit
## 6461 5.23 9.3 9.9 Reduce Stress
## 6462 7.34 8.5 4.9 Good Performance Habit
## 6463 7.06 6.4 1.7 Good Performance Habit
## 6464 9.39 9.7 3.1 Good Performance Habit
## 6465 3.72 6.5 3.8 Reduce Screen Time
## 6466 4.93 5.2 2.7 Improve Sleep
## 6467 4.54 5.6 5.6 Improve Sleep
## 6468 4.54 7.4 3.1 Reduce Screen Time
## 6469 5.16 7.4 8.1 Reduce Stress
## 6470 4.33 6.5 3.9 Reduce Screen Time
## 6471 6.81 7.2 5.4 Good Performance Habit
## 6472 2.58 6.0 4.8 Increase Study Time
## 6473 5.14 6.8 4.4 Good Performance Habit
## 6474 6.28 6.8 4.3 Good Performance Habit
## 6475 7.02 6.9 3.0 Good Performance Habit
## 6476 5.00 5.6 5.4 Improve Sleep
## 6477 5.65 6.0 6.7 Reduce Stress
## 6478 5.15 6.6 3.3 Good Performance Habit
## 6479 6.02 5.4 6.1 Improve Sleep
## 6480 4.69 6.4 2.9 Good Performance Habit
## 6481 6.46 8.4 4.8 Good Performance Habit
## 6482 7.72 8.6 6.9 Reduce Stress
## 6483 9.18 6.5 1.6 Reduce Screen Time
## 6484 4.38 7.1 8.1 Reduce Stress
## 6485 6.72 8.6 3.8 Good Performance Habit
## 6486 5.59 8.0 9.1 Reduce Stress
## 6487 5.90 7.1 6.2 Reduce Stress
## 6488 4.17 6.6 5.5 Good Performance Habit
## 6489 5.29 9.7 2.0 Reduce Screen Time
## 6490 6.18 7.8 1.0 Good Performance Habit
## 6491 5.12 5.4 7.0 Improve Sleep
## 6492 4.27 5.0 4.7 Improve Sleep
## 6493 7.49 7.8 8.2 Reduce Stress
## 6494 5.32 6.6 5.6 Reduce Screen Time
## 6495 4.61 8.7 4.4 Good Performance Habit
## 6496 5.11 5.0 3.6 Improve Sleep
## 6497 4.64 5.4 7.9 Improve Sleep
## 6498 3.58 7.2 6.5 Reduce Stress
## 6499 6.09 5.7 4.2 Improve Sleep
## 6500 4.60 8.5 4.9 Reduce Screen Time
## 6501 2.60 7.7 6.1 Increase Study Time
## 6502 7.05 8.6 1.0 Good Performance Habit
## 6503 4.37 3.7 8.8 Improve Sleep
## 6504 2.19 4.9 5.6 Increase Study Time
## 6505 4.88 8.0 7.9 Reduce Stress
## 6506 3.63 5.4 3.6 Improve Sleep
## 6507 5.39 8.3 1.5 Good Performance Habit
## 6508 2.68 5.7 1.0 Increase Study Time
## 6509 4.19 9.7 3.2 Good Performance Habit
## 6510 1.77 6.7 4.4 Increase Study Time
## 6511 2.28 6.9 5.5 Increase Study Time
## 6512 5.17 8.2 6.9 Reduce Stress
## 6513 3.87 7.6 5.5 Good Performance Habit
## 6514 7.99 6.8 8.4 Reduce Stress
## 6515 3.53 10.0 8.2 Reduce Stress
## 6516 5.31 6.5 4.1 Good Performance Habit
## 6517 2.46 5.4 9.2 Increase Study Time
## 6518 7.92 8.4 4.4 Good Performance Habit
## 6519 5.06 7.3 5.9 Good Performance Habit
## 6520 1.96 6.3 6.7 Increase Study Time
## 6521 5.44 6.4 5.3 Reduce Screen Time
## 6522 4.01 7.3 4.0 Good Performance Habit
## 6523 9.23 8.4 2.7 Good Performance Habit
## 6524 7.14 8.0 7.2 Reduce Stress
## 6525 3.44 4.9 3.3 Improve Sleep
## 6526 6.39 6.9 5.6 Good Performance Habit
## 6527 5.94 6.6 4.1 Reduce Screen Time
## 6528 4.30 7.9 7.2 Reduce Stress
## 6529 4.34 5.6 5.4 Improve Sleep
## 6530 4.49 6.8 2.6 Good Performance Habit
## 6531 3.07 7.6 4.9 Good Performance Habit
## 6532 5.57 7.0 1.0 Good Performance Habit
## 6533 4.01 7.4 7.0 Reduce Stress
## 6534 4.81 9.2 9.4 Reduce Stress
## 6535 4.29 8.2 5.6 Reduce Screen Time
## 6536 3.57 5.2 4.7 Improve Sleep
## 6537 8.81 8.7 7.0 Reduce Stress
## 6538 5.58 8.3 2.9 Reduce Screen Time
## 6539 6.33 5.7 3.7 Improve Sleep
## 6540 10.32 6.9 6.4 Reduce Stress
## 6541 4.92 6.5 2.8 Reduce Screen Time
## 6542 3.61 8.1 1.0 Good Performance Habit
## 6543 1.63 6.1 7.1 Increase Study Time
## 6544 2.19 6.8 3.9 Increase Study Time
## 6545 6.25 8.1 2.8 Reduce Screen Time
## 6546 2.27 6.3 7.8 Increase Study Time
## 6547 0.96 6.5 4.9 Increase Study Time
## 6548 5.08 8.3 7.5 Reduce Stress
## 6549 4.85 6.3 5.6 Good Performance Habit
## 6550 8.33 10.0 4.0 Good Performance Habit
## 6551 2.14 6.6 8.7 Increase Study Time
## 6552 7.02 4.8 1.0 Improve Sleep
## 6553 0.41 8.2 7.6 Increase Study Time
## 6554 7.53 7.2 5.0 Good Performance Habit
## 6555 5.56 7.6 7.6 Reduce Stress
## 6556 3.13 8.0 3.6 Good Performance Habit
## 6557 7.43 9.4 3.6 Good Performance Habit
## 6558 5.34 8.4 4.6 Reduce Screen Time
## 6559 6.18 6.2 8.7 Reduce Stress
## 6560 5.08 8.4 7.0 Reduce Stress
## 6561 7.27 7.4 3.9 Reduce Screen Time
## 6562 6.31 5.6 3.2 Improve Sleep
## 6563 3.13 6.4 8.0 Reduce Stress
## 6564 3.28 9.3 7.2 Reduce Stress
## 6565 3.35 6.2 4.3 Good Performance Habit
## 6566 6.56 8.1 4.7 Good Performance Habit
## 6567 6.22 6.8 8.0 Reduce Stress
## 6568 5.57 7.7 1.0 Good Performance Habit
## 6569 4.56 5.7 6.7 Improve Sleep
## 6570 3.87 6.7 2.8 Good Performance Habit
## 6571 5.70 4.9 5.5 Improve Sleep
## 6572 6.65 9.2 7.1 Reduce Stress
## 6573 6.54 7.4 1.3 Good Performance Habit
## 6574 8.24 5.5 7.9 Improve Sleep
## 6575 8.43 6.7 9.1 Reduce Stress
## 6576 4.30 7.8 3.1 Good Performance Habit
## 6577 10.03 6.7 4.3 Good Performance Habit
## 6578 8.00 5.5 4.9 Improve Sleep
## 6579 5.62 5.3 6.6 Improve Sleep
## 6580 5.76 7.6 7.1 Reduce Stress
## 6581 6.12 7.8 4.9 Good Performance Habit
## 6582 4.01 3.9 5.9 Improve Sleep
## 6583 3.71 6.1 4.6 Reduce Screen Time
## 6584 5.13 6.2 6.3 Reduce Stress
## 6585 4.31 6.9 2.4 Good Performance Habit
## 6586 1.44 7.8 5.7 Increase Study Time
## 6587 6.28 8.3 8.1 Reduce Stress
## 6588 1.27 6.4 6.5 Increase Study Time
## 6589 5.70 5.8 7.1 Improve Sleep
## 6590 4.34 6.0 4.0 Good Performance Habit
## 6591 3.78 8.6 3.8 Good Performance Habit
## 6592 6.54 6.8 5.6 Good Performance Habit
## 6593 3.41 8.0 3.6 Reduce Screen Time
## 6594 3.12 7.5 2.1 Good Performance Habit
## 6595 5.61 9.6 7.0 Reduce Stress
## 6596 5.46 5.1 5.5 Improve Sleep
## 6597 3.64 6.5 3.5 Good Performance Habit
## 6598 3.51 6.4 6.0 Reduce Screen Time
## 6599 3.57 8.6 8.4 Reduce Stress
## 6600 5.67 6.7 4.6 Good Performance Habit
## 6601 5.88 7.8 4.4 Good Performance Habit
## 6602 6.63 4.1 7.5 Improve Sleep
## 6603 4.80 6.6 1.4 Good Performance Habit
## 6604 3.23 8.2 5.0 Good Performance Habit
## 6605 6.43 8.2 4.0 Good Performance Habit
## 6606 10.22 6.5 1.4 Good Performance Habit
## 6607 8.20 5.8 6.7 Improve Sleep
## 6608 3.00 6.4 4.5 Good Performance Habit
## 6609 6.53 6.8 6.3 Reduce Stress
## 6610 4.77 9.0 6.5 Reduce Stress
## 6611 4.81 6.3 5.8 Reduce Screen Time
## 6612 4.49 7.6 3.4 Reduce Screen Time
## 6613 3.40 8.4 4.6 Good Performance Habit
## 6614 2.02 6.6 4.7 Increase Study Time
## 6615 5.89 5.6 6.3 Improve Sleep
## 6616 3.01 6.4 4.9 Good Performance Habit
## 6617 3.94 7.2 6.2 Reduce Stress
## 6618 4.26 7.3 3.9 Reduce Screen Time
## 6619 5.21 6.5 6.7 Reduce Stress
## 6620 4.16 8.1 4.1 Good Performance Habit
## 6621 4.73 5.4 1.8 Improve Sleep
## 6622 4.18 6.4 4.5 Good Performance Habit
## 6623 5.53 6.8 5.0 Reduce Screen Time
## 6624 5.73 6.9 5.2 Reduce Screen Time
## 6625 7.93 5.8 1.6 Improve Sleep
## 6626 6.14 7.1 6.1 Reduce Stress
## 6627 3.90 6.8 5.4 Good Performance Habit
## 6628 6.15 6.4 4.9 Good Performance Habit
## 6629 6.85 7.1 6.6 Reduce Stress
## 6630 3.91 7.7 5.1 Good Performance Habit
## 6631 3.95 7.8 2.3 Good Performance Habit
## 6632 0.58 6.6 2.1 Increase Study Time
## 6633 7.99 7.5 6.7 Reduce Stress
## 6634 5.33 10.0 1.1 Good Performance Habit
## 6635 7.71 8.0 7.3 Reduce Stress
## 6636 2.02 8.8 2.6 Increase Study Time
## 6637 0.40 6.5 3.3 Increase Study Time
## 6638 5.66 8.3 6.4 Reduce Stress
## 6639 3.38 8.0 3.5 Good Performance Habit
## 6640 5.38 5.9 2.3 Improve Sleep
## 6641 3.51 7.0 4.0 Good Performance Habit
## 6642 6.67 6.7 3.3 Good Performance Habit
## 6643 4.40 6.6 5.7 Reduce Screen Time
## 6644 4.73 6.0 2.8 Good Performance Habit
## 6645 6.01 7.7 4.2 Good Performance Habit
## 6646 4.17 7.1 3.3 Good Performance Habit
## 6647 4.30 8.1 2.2 Reduce Screen Time
## 6648 7.52 5.1 3.2 Improve Sleep
## 6649 4.88 7.9 7.7 Reduce Stress
## 6650 5.50 6.3 4.7 Good Performance Habit
## 6651 6.05 8.2 2.4 Good Performance Habit
## 6652 5.28 7.2 3.2 Good Performance Habit
## 6653 6.08 7.0 5.8 Good Performance Habit
## 6654 8.84 5.7 6.0 Improve Sleep
## 6655 7.22 6.8 5.1 Reduce Screen Time
## 6656 2.29 4.6 4.0 Increase Study Time
## 6657 0.72 6.7 5.4 Increase Study Time
## 6658 3.35 6.9 3.9 Good Performance Habit
## 6659 0.40 6.5 7.0 Increase Study Time
## 6660 1.39 7.0 5.4 Increase Study Time
## 6661 3.00 6.9 5.9 Good Performance Habit
## 6662 3.16 7.9 6.8 Reduce Stress
## 6663 5.41 7.2 4.6 Good Performance Habit
## 6664 5.96 8.7 5.6 Good Performance Habit
## 6665 9.36 6.3 4.0 Good Performance Habit
## 6666 3.65 7.5 9.1 Reduce Stress
## 6667 3.86 7.9 5.8 Good Performance Habit
## 6668 5.49 7.1 4.7 Good Performance Habit
## 6669 7.22 7.3 7.6 Reduce Stress
## 6670 4.54 8.8 4.2 Good Performance Habit
## 6671 3.27 7.5 6.0 Good Performance Habit
## 6672 1.10 7.0 4.8 Increase Study Time
## 6673 6.71 7.8 4.7 Good Performance Habit
## 6674 4.59 5.7 6.1 Improve Sleep
## 6675 8.13 7.0 4.8 Good Performance Habit
## 6676 8.65 6.2 1.5 Good Performance Habit
## 6677 8.81 7.9 4.1 Good Performance Habit
## 6678 5.96 6.5 2.7 Good Performance Habit
## 6679 6.78 7.7 4.5 Good Performance Habit
## 6680 2.39 6.8 4.8 Increase Study Time
## 6681 5.89 7.6 5.1 Reduce Screen Time
## 6682 4.33 8.2 8.6 Reduce Stress
## 6683 7.10 5.0 4.1 Improve Sleep
## 6684 3.97 8.4 5.8 Good Performance Habit
## 6685 4.59 5.7 3.6 Improve Sleep
## 6686 3.39 7.2 5.3 Good Performance Habit
## 6687 8.65 8.0 3.8 Good Performance Habit
## 6688 5.26 7.8 4.8 Good Performance Habit
## 6689 3.05 9.9 2.3 Reduce Screen Time
## 6690 4.26 6.3 2.0 Good Performance Habit
## 6691 2.48 7.3 6.6 Increase Study Time
## 6692 7.41 6.7 4.1 Good Performance Habit
## 6693 7.46 5.4 9.2 Improve Sleep
## 6694 5.34 7.4 4.9 Reduce Screen Time
## 6695 5.61 4.5 2.9 Improve Sleep
## 6696 2.16 7.8 3.9 Increase Study Time
## 6697 8.12 5.9 10.0 Improve Sleep
## 6698 4.93 8.2 4.1 Good Performance Habit
## 6699 9.09 5.7 8.8 Improve Sleep
## 6700 3.88 7.5 2.9 Good Performance Habit
## 6701 5.96 7.9 4.8 Good Performance Habit
## 6702 6.76 9.4 2.7 Good Performance Habit
## 6703 6.60 7.0 5.3 Good Performance Habit
## 6704 4.80 4.7 6.0 Improve Sleep
## 6705 7.17 8.7 9.5 Reduce Stress
## 6706 5.80 9.2 9.6 Reduce Stress
## 6707 5.07 5.8 6.2 Improve Sleep
## 6708 2.97 8.1 3.5 Increase Study Time
## 6709 7.57 6.7 5.7 Reduce Screen Time
## 6710 5.09 5.5 4.9 Improve Sleep
## 6711 5.98 8.1 6.2 Reduce Stress
## 6712 4.90 7.8 4.9 Good Performance Habit
## 6713 5.71 9.0 1.0 Good Performance Habit
## 6714 4.29 6.7 4.9 Good Performance Habit
## 6715 10.11 5.8 2.4 Improve Sleep
## 6716 8.62 6.4 3.8 Good Performance Habit
## 6717 6.37 4.5 3.7 Improve Sleep
## 6718 5.59 6.9 3.9 Good Performance Habit
## 6719 6.36 6.5 4.7 Good Performance Habit
## 6720 3.34 7.6 3.8 Good Performance Habit
## 6721 6.21 8.3 4.7 Good Performance Habit
## 6722 4.84 7.8 7.0 Reduce Stress
## 6723 4.19 7.9 4.4 Good Performance Habit
## 6724 3.67 8.4 6.7 Reduce Stress
## 6725 3.68 9.8 6.5 Reduce Stress
## 6726 5.97 7.9 7.7 Reduce Stress
## 6727 5.06 5.7 8.8 Improve Sleep
## 6728 3.45 6.7 6.7 Reduce Stress
## 6729 5.84 7.4 4.6 Good Performance Habit
## 6730 5.30 6.1 5.2 Good Performance Habit
## 6731 4.83 4.7 3.0 Improve Sleep
## 6732 7.89 5.2 4.4 Improve Sleep
## 6733 4.50 7.5 7.1 Reduce Stress
## 6734 2.38 7.3 8.3 Increase Study Time
## 6735 5.31 6.3 6.9 Reduce Stress
## 6736 3.06 8.5 5.0 Good Performance Habit
## 6737 6.66 4.7 6.5 Improve Sleep
## 6738 6.14 7.2 2.7 Good Performance Habit
## 6739 4.40 7.5 9.1 Reduce Stress
## 6740 6.00 8.5 4.5 Reduce Screen Time
## 6741 4.22 8.3 4.7 Good Performance Habit
## 6742 4.11 6.8 3.6 Good Performance Habit
## 6743 1.51 5.1 3.2 Increase Study Time
## 6744 0.90 5.5 8.0 Increase Study Time
## 6745 4.20 7.7 7.9 Reduce Stress
## 6746 8.46 6.9 3.6 Good Performance Habit
## 6747 2.66 6.9 6.2 Increase Study Time
## 6748 4.85 8.7 8.2 Reduce Stress
## 6749 3.71 6.1 1.0 Good Performance Habit
## 6750 6.02 7.8 1.0 Good Performance Habit
## 6751 3.38 5.7 6.4 Improve Sleep
## 6752 4.79 8.2 5.0 Good Performance Habit
## 6753 5.79 10.0 7.7 Reduce Stress
## 6754 4.01 10.0 7.8 Reduce Stress
## 6755 4.70 8.7 3.1 Good Performance Habit
## 6756 4.58 7.5 4.8 Good Performance Habit
## 6757 6.02 7.1 5.5 Good Performance Habit
## 6758 6.22 7.1 3.1 Good Performance Habit
## 6759 6.46 7.6 6.7 Reduce Stress
## 6760 5.84 9.7 6.5 Reduce Stress
## 6761 3.05 5.5 5.2 Improve Sleep
## 6762 4.19 6.6 5.5 Good Performance Habit
## 6763 6.00 5.4 3.3 Improve Sleep
## 6764 5.09 6.8 7.5 Reduce Stress
## 6765 6.68 6.3 7.9 Reduce Stress
## 6766 2.53 7.1 8.4 Increase Study Time
## 6767 3.26 5.8 5.2 Improve Sleep
## 6768 3.35 6.7 3.8 Good Performance Habit
## 6769 5.57 6.3 6.0 Good Performance Habit
## 6770 3.75 5.5 6.0 Improve Sleep
## 6771 3.25 7.1 5.7 Reduce Screen Time
## 6772 5.65 8.9 1.0 Reduce Screen Time
## 6773 4.19 5.2 6.0 Improve Sleep
## 6774 2.89 4.0 6.0 Increase Study Time
## 6775 5.79 7.3 7.3 Reduce Stress
## 6776 4.77 6.6 1.0 Good Performance Habit
## 6777 5.93 6.9 7.6 Reduce Stress
## 6778 6.08 7.1 2.5 Good Performance Habit
## 6779 3.82 6.0 5.8 Good Performance Habit
## 6780 4.41 6.0 5.6 Reduce Screen Time
## 6781 4.73 7.1 6.6 Reduce Stress
## 6782 6.28 5.2 5.0 Improve Sleep
## 6783 4.90 5.9 5.8 Improve Sleep
## 6784 6.99 6.3 5.7 Reduce Screen Time
## 6785 3.91 7.5 8.1 Reduce Stress
## 6786 4.97 8.7 2.9 Good Performance Habit
## 6787 7.47 6.7 4.0 Good Performance Habit
## 6788 2.28 6.1 4.2 Increase Study Time
## 6789 2.54 7.5 6.9 Increase Study Time
## 6790 6.30 5.4 5.0 Improve Sleep
## 6791 6.42 5.8 2.4 Improve Sleep
## 6792 6.86 6.5 1.6 Good Performance Habit
## 6793 6.60 6.9 3.5 Good Performance Habit
## 6794 6.96 6.8 1.0 Good Performance Habit
## 6795 4.02 4.8 4.7 Improve Sleep
## 6796 5.01 7.2 4.7 Good Performance Habit
## 6797 6.05 7.4 5.1 Reduce Screen Time
## 6798 2.65 6.1 7.9 Increase Study Time
## 6799 2.54 8.6 3.5 Increase Study Time
## 6800 3.84 6.3 4.4 Good Performance Habit
## 6801 6.87 7.0 6.3 Reduce Stress
## 6802 6.43 6.9 3.4 Good Performance Habit
## 6803 2.49 7.3 4.0 Increase Study Time
## 6804 3.89 5.8 4.6 Improve Sleep
## 6805 3.91 7.1 5.9 Good Performance Habit
## 6806 5.11 6.0 9.2 Reduce Stress
## 6807 5.34 5.8 5.2 Improve Sleep
## 6808 4.97 8.4 4.2 Good Performance Habit
## 6809 3.20 5.3 4.7 Improve Sleep
## 6810 7.06 6.5 5.1 Reduce Screen Time
## 6811 6.95 5.0 2.7 Improve Sleep
## 6812 2.96 6.1 7.5 Increase Study Time
## 6813 4.64 5.9 6.5 Improve Sleep
## 6814 7.00 8.7 7.0 Reduce Stress
## 6815 5.63 6.1 4.2 Good Performance Habit
## 6816 5.86 5.4 5.4 Improve Sleep
## 6817 4.12 4.2 5.2 Improve Sleep
## 6818 7.68 6.7 3.9 Reduce Screen Time
## 6819 2.90 6.5 6.4 Increase Study Time
## 6820 6.72 7.1 3.5 Good Performance Habit
## 6821 8.34 6.2 8.5 Reduce Stress
## 6822 3.54 6.2 6.5 Reduce Stress
## 6823 7.53 6.0 5.7 Good Performance Habit
## 6824 6.57 4.3 9.0 Improve Sleep
## 6825 3.76 9.2 2.3 Good Performance Habit
## 6826 5.28 6.6 4.0 Reduce Screen Time
## 6827 7.68 7.2 7.7 Reduce Stress
## 6828 4.14 7.7 2.5 Good Performance Habit
## 6829 4.14 8.7 7.4 Reduce Stress
## 6830 1.42 6.8 6.5 Increase Study Time
## 6831 1.82 3.7 8.7 Increase Study Time
## 6832 4.25 8.5 7.1 Reduce Stress
## 6833 4.73 6.5 4.9 Good Performance Habit
## 6834 6.11 5.8 7.7 Improve Sleep
## 6835 6.65 7.8 2.9 Good Performance Habit
## 6836 8.72 5.0 4.5 Improve Sleep
## 6837 6.33 6.7 7.3 Reduce Stress
## 6838 10.56 6.8 5.2 Reduce Screen Time
## 6839 6.45 7.7 1.0 Good Performance Habit
## 6840 7.58 6.2 7.6 Reduce Stress
## 6841 3.47 5.5 4.6 Improve Sleep
## 6842 5.88 5.7 5.9 Improve Sleep
## 6843 6.85 7.1 8.6 Reduce Stress
## 6844 6.84 5.5 5.7 Improve Sleep
## 6845 4.17 7.1 7.7 Reduce Stress
## 6846 4.94 8.4 5.6 Reduce Screen Time
## 6847 2.62 6.7 2.2 Increase Study Time
## 6848 5.66 6.2 7.1 Reduce Stress
## 6849 3.01 5.4 5.8 Improve Sleep
## 6850 6.87 8.8 7.3 Reduce Stress
## 6851 5.50 10.0 4.6 Good Performance Habit
## 6852 6.38 8.1 4.1 Good Performance Habit
## 6853 6.15 9.4 6.8 Reduce Stress
## 6854 5.88 5.8 1.0 Improve Sleep
## 6855 6.58 6.9 9.4 Reduce Stress
## 6856 5.16 6.1 2.6 Good Performance Habit
## 6857 1.93 8.6 6.4 Increase Study Time
## 6858 7.45 5.0 6.2 Improve Sleep
## 6859 3.62 7.7 6.3 Reduce Stress
## 6860 6.78 5.3 9.8 Improve Sleep
## 6861 6.06 6.4 4.1 Good Performance Habit
## 6862 5.75 7.2 7.2 Reduce Stress
## 6863 5.33 6.7 5.8 Reduce Screen Time
## 6864 5.56 7.0 6.0 Reduce Screen Time
## 6865 5.41 7.3 7.9 Reduce Stress
## 6866 5.06 8.3 4.6 Reduce Screen Time
## 6867 4.79 6.6 4.0 Good Performance Habit
## 6868 5.59 7.6 3.7 Good Performance Habit
## 6869 6.17 6.6 4.7 Good Performance Habit
## 6870 4.20 8.9 2.2 Good Performance Habit
## 6871 5.48 6.8 2.1 Reduce Screen Time
## 6872 2.46 6.8 5.5 Increase Study Time
## 6873 3.46 6.9 6.2 Reduce Stress
## 6874 1.72 7.5 5.1 Increase Study Time
## 6875 4.50 8.2 4.6 Reduce Screen Time
## 6876 5.73 7.5 2.7 Good Performance Habit
## 6877 6.34 7.1 5.5 Reduce Screen Time
## 6878 2.44 5.9 5.1 Increase Study Time
## 6879 6.56 7.0 8.3 Reduce Stress
## 6880 3.05 8.9 6.4 Reduce Stress
## 6881 4.23 7.1 3.3 Good Performance Habit
## 6882 4.05 8.6 3.0 Reduce Screen Time
## 6883 8.00 6.4 4.9 Good Performance Habit
## 6884 5.34 8.2 7.4 Reduce Stress
## 6885 8.99 9.0 2.7 Good Performance Habit
## 6886 6.88 7.0 6.6 Reduce Stress
## 6887 4.53 5.5 2.2 Improve Sleep
## 6888 5.78 7.1 1.5 Reduce Screen Time
## 6889 7.59 6.8 4.2 Reduce Screen Time
## 6890 3.37 4.8 2.9 Improve Sleep
## 6891 4.10 6.6 2.0 Good Performance Habit
## 6892 4.95 6.2 6.1 Reduce Stress
## 6893 4.41 8.5 1.0 Reduce Screen Time
## 6894 4.53 6.8 4.1 Good Performance Habit
## 6895 8.25 8.4 5.8 Good Performance Habit
## 6896 5.31 6.5 7.2 Reduce Stress
## 6897 4.42 7.2 4.5 Reduce Screen Time
## 6898 4.28 4.3 2.7 Improve Sleep
## 6899 2.46 5.8 6.0 Increase Study Time
## 6900 6.55 7.8 2.8 Reduce Screen Time
## 6901 3.83 5.5 9.4 Improve Sleep
## 6902 11.78 9.9 4.1 Reduce Screen Time
## 6903 5.89 5.2 7.2 Improve Sleep
## 6904 3.92 7.5 9.2 Reduce Stress
## 6905 2.72 6.4 6.7 Increase Study Time
## 6906 4.13 6.0 7.7 Reduce Stress
## 6907 5.78 5.1 3.3 Improve Sleep
## 6908 3.90 5.7 7.0 Improve Sleep
## 6909 6.22 5.6 5.5 Improve Sleep
## 6910 6.33 7.9 7.5 Reduce Stress
## 6911 6.08 7.0 2.5 Good Performance Habit
## 6912 5.99 5.9 4.0 Improve Sleep
## 6913 5.04 6.6 5.9 Reduce Screen Time
## 6914 3.77 5.5 6.7 Improve Sleep
## 6915 2.67 6.3 2.8 Increase Study Time
## 6916 1.95 7.3 3.0 Increase Study Time
## 6917 4.16 5.5 3.9 Improve Sleep
## 6918 6.29 6.1 6.2 Reduce Stress
## 6919 5.00 5.9 4.0 Improve Sleep
## 6920 3.04 6.7 4.8 Good Performance Habit
## 6921 6.73 9.4 9.2 Reduce Stress
## 6922 3.16 8.1 7.1 Reduce Stress
## 6923 2.79 8.0 4.2 Increase Study Time
## 6924 3.14 5.9 1.1 Improve Sleep
## 6925 3.74 6.8 10.0 Reduce Stress
## 6926 4.84 7.3 2.9 Good Performance Habit
## 6927 2.65 6.3 3.9 Increase Study Time
## 6928 1.94 7.5 4.2 Increase Study Time
## 6929 5.81 8.0 4.4 Good Performance Habit
## 6930 5.48 4.5 6.1 Improve Sleep
## 6931 5.89 7.7 10.0 Reduce Stress
## 6932 6.41 6.6 3.4 Reduce Screen Time
## 6933 5.09 7.3 5.1 Reduce Screen Time
## 6934 8.35 5.3 3.5 Improve Sleep
## 6935 4.60 7.5 8.5 Reduce Stress
## 6936 4.88 7.8 6.1 Reduce Stress
## 6937 7.46 5.3 7.1 Improve Sleep
## 6938 5.73 7.3 5.3 Good Performance Habit
## 6939 4.69 6.0 7.7 Reduce Stress
## 6940 4.96 6.4 3.8 Good Performance Habit
## 6941 2.77 5.5 5.9 Increase Study Time
## 6942 6.25 6.0 8.5 Reduce Stress
## 6943 4.58 7.4 4.9 Good Performance Habit
## 6944 5.82 5.9 3.8 Improve Sleep
## 6945 7.50 6.9 3.1 Good Performance Habit
## 6946 6.45 6.7 4.0 Reduce Screen Time
## 6947 5.49 6.3 8.8 Reduce Stress
## 6948 5.72 6.5 5.8 Good Performance Habit
## 6949 5.24 8.6 2.3 Good Performance Habit
## 6950 8.18 7.1 3.6 Good Performance Habit
## 6951 1.41 10.0 5.2 Increase Study Time
## 6952 4.14 9.7 6.6 Reduce Stress
## 6953 3.46 5.9 4.8 Improve Sleep
## 6954 5.79 6.7 2.5 Good Performance Habit
## 6955 4.65 7.4 3.2 Reduce Screen Time
## 6956 5.18 7.1 4.5 Good Performance Habit
## 6957 8.63 7.0 2.3 Good Performance Habit
## 6958 5.52 5.3 7.4 Improve Sleep
## 6959 6.62 7.6 8.9 Reduce Stress
## 6960 4.25 5.6 6.5 Improve Sleep
## 6961 3.72 6.8 5.1 Good Performance Habit
## 6962 3.10 6.9 2.4 Good Performance Habit
## 6963 7.70 5.2 6.8 Improve Sleep
## 6964 2.93 8.1 3.9 Increase Study Time
## 6965 4.12 10.0 2.4 Good Performance Habit
## 6966 9.35 6.7 8.0 Reduce Stress
## 6967 5.74 6.9 6.4 Reduce Stress
## 6968 5.09 7.3 6.7 Reduce Stress
## 6969 4.59 7.5 4.2 Good Performance Habit
## 6970 2.85 6.4 4.2 Increase Study Time
## 6971 5.73 6.3 8.4 Reduce Stress
## 6972 6.95 6.2 3.3 Reduce Screen Time
## 6973 3.34 7.8 1.4 Good Performance Habit
## 6974 4.10 8.4 9.2 Reduce Stress
## 6975 8.14 6.3 7.8 Reduce Stress
## 6976 4.32 6.8 7.0 Reduce Stress
## 6977 6.43 7.8 4.1 Good Performance Habit
## 6978 9.32 8.7 4.5 Good Performance Habit
## 6979 3.40 4.9 4.4 Improve Sleep
## 6980 4.87 7.6 5.0 Good Performance Habit
## 6981 3.31 6.6 4.9 Reduce Screen Time
## 6982 0.80 4.8 6.2 Increase Study Time
## 6983 7.50 8.7 4.1 Reduce Screen Time
## 6984 6.16 5.6 5.0 Improve Sleep
## 6985 4.49 9.1 4.6 Reduce Screen Time
## 6986 5.88 8.5 6.3 Reduce Stress
## 6987 3.91 6.6 4.0 Reduce Screen Time
## 6988 2.30 7.5 3.0 Increase Study Time
## 6989 3.82 7.9 6.1 Reduce Stress
## 6990 3.59 7.4 5.8 Good Performance Habit
## 6991 3.13 7.0 5.3 Reduce Screen Time
## 6992 7.03 8.7 7.0 Reduce Stress
## 6993 3.40 7.9 2.2 Reduce Screen Time
## 6994 2.94 6.7 5.9 Increase Study Time
## 6995 5.35 5.6 4.9 Improve Sleep
## 6996 5.88 8.1 1.9 Good Performance Habit
## 6997 8.14 8.0 5.5 Good Performance Habit
## 6998 5.52 6.8 6.0 Good Performance Habit
## 6999 2.40 8.6 4.6 Increase Study Time
## 7000 3.30 8.2 5.9 Good Performance Habit
## 7001 6.80 9.1 5.2 Good Performance Habit
## 7002 3.75 6.7 3.1 Good Performance Habit
## 7003 5.90 6.6 6.3 Reduce Stress
## 7004 8.53 5.7 10.0 Improve Sleep
## 7005 2.21 4.7 1.0 Increase Study Time
## 7006 2.14 8.4 1.9 Increase Study Time
## 7007 4.60 6.2 5.0 Reduce Screen Time
## 7008 4.93 4.4 2.9 Improve Sleep
## 7009 6.67 6.8 7.5 Reduce Stress
## 7010 1.93 7.1 3.7 Increase Study Time
## 7011 6.13 6.4 8.3 Reduce Stress
## 7012 4.52 7.4 5.5 Reduce Screen Time
## 7013 1.77 8.5 6.0 Increase Study Time
## 7014 4.51 6.5 4.2 Good Performance Habit
## 7015 5.90 6.6 4.5 Good Performance Habit
## 7016 8.39 8.2 6.6 Reduce Stress
## 7017 3.78 8.0 1.5 Good Performance Habit
## 7018 6.32 6.4 6.0 Good Performance Habit
## 7019 2.46 7.1 4.1 Increase Study Time
## 7020 7.01 7.6 1.0 Good Performance Habit
## 7021 5.16 9.5 7.4 Reduce Stress
## 7022 7.98 7.0 6.4 Reduce Stress
## 7023 2.42 7.3 2.3 Increase Study Time
## 7024 2.81 8.0 5.0 Increase Study Time
## 7025 1.74 8.3 6.9 Increase Study Time
## 7026 8.37 7.1 3.3 Good Performance Habit
## 7027 4.10 9.4 3.6 Good Performance Habit
## 7028 1.51 6.7 3.8 Increase Study Time
## 7029 3.56 7.1 4.4 Good Performance Habit
## 7030 6.59 5.8 4.2 Improve Sleep
## 7031 6.20 5.5 3.9 Improve Sleep
## 7032 5.80 6.8 4.9 Good Performance Habit
## 7033 2.44 7.7 3.8 Increase Study Time
## 7034 4.64 9.0 6.5 Reduce Stress
## 7035 1.19 5.6 5.8 Increase Study Time
## 7036 2.09 6.5 10.0 Increase Study Time
## 7037 6.11 8.2 2.9 Good Performance Habit
## 7038 6.68 8.1 1.7 Good Performance Habit
## 7039 4.53 7.2 4.9 Reduce Screen Time
## 7040 1.49 7.3 8.6 Increase Study Time
## 7041 3.13 7.6 6.3 Reduce Stress
## 7042 4.24 6.3 3.3 Good Performance Habit
## 7043 8.02 8.9 8.8 Reduce Stress
## 7044 3.74 7.5 5.2 Good Performance Habit
## 7045 2.16 6.4 5.5 Increase Study Time
## 7046 2.70 8.0 4.9 Increase Study Time
## 7047 3.31 7.8 5.1 Good Performance Habit
## 7048 3.92 5.7 5.0 Improve Sleep
## 7049 4.47 6.1 3.9 Good Performance Habit
## 7050 8.79 7.3 2.8 Good Performance Habit
## 7051 3.84 8.3 1.0 Good Performance Habit
## 7052 0.85 7.8 8.6 Increase Study Time
## 7053 6.93 6.4 5.9 Good Performance Habit
## 7054 3.47 7.2 6.2 Reduce Stress
## 7055 3.49 9.0 6.1 Reduce Stress
## 7056 3.86 5.1 4.2 Improve Sleep
## 7057 5.56 9.3 6.6 Reduce Stress
## 7058 5.21 5.4 3.8 Improve Sleep
## 7059 5.85 7.3 3.3 Reduce Screen Time
## 7060 4.30 6.9 5.8 Reduce Screen Time
## 7061 5.07 3.9 4.7 Improve Sleep
## 7062 2.86 10.0 5.4 Increase Study Time
## 7063 2.90 7.2 5.8 Increase Study Time
## 7064 3.77 9.3 6.0 Good Performance Habit
## 7065 4.07 5.5 8.0 Improve Sleep
## 7066 1.65 6.2 4.9 Increase Study Time
## 7067 2.61 6.9 6.3 Increase Study Time
## 7068 7.32 6.2 6.9 Reduce Stress
## 7069 7.19 7.7 9.4 Reduce Stress
## 7070 8.07 8.3 3.0 Good Performance Habit
## 7071 7.16 6.1 5.8 Reduce Screen Time
## 7072 6.66 5.7 2.7 Improve Sleep
## 7073 8.28 6.7 6.7 Reduce Stress
## 7074 6.19 8.0 3.8 Good Performance Habit
## 7075 4.32 7.6 7.6 Reduce Stress
## 7076 4.39 7.5 3.3 Good Performance Habit
## 7077 5.59 5.8 3.9 Improve Sleep
## 7078 5.78 7.4 9.0 Reduce Stress
## 7079 4.68 6.1 5.8 Good Performance Habit
## 7080 4.31 6.5 6.0 Good Performance Habit
## 7081 4.88 7.9 8.7 Reduce Stress
## 7082 3.43 5.1 6.9 Improve Sleep
## 7083 9.30 6.9 7.1 Reduce Stress
## 7084 5.97 6.0 7.6 Reduce Stress
## 7085 1.12 7.1 5.4 Increase Study Time
## 7086 6.68 5.9 7.1 Improve Sleep
## 7087 3.39 4.7 1.0 Improve Sleep
## 7088 4.56 6.4 5.6 Good Performance Habit
## 7089 5.01 7.5 2.9 Good Performance Habit
## 7090 6.72 6.4 2.6 Good Performance Habit
## 7091 4.92 7.7 5.3 Good Performance Habit
## 7092 5.55 9.0 2.3 Good Performance Habit
## 7093 4.74 5.2 3.4 Improve Sleep
## 7094 9.49 6.8 4.9 Good Performance Habit
## 7095 4.92 7.7 3.2 Reduce Screen Time
## 7096 3.28 8.3 2.6 Reduce Screen Time
## 7097 2.48 8.0 1.1 Increase Study Time
## 7098 5.03 7.6 5.7 Good Performance Habit
## 7099 4.14 6.2 5.8 Reduce Screen Time
## 7100 5.35 5.5 4.7 Improve Sleep
## 7101 5.85 6.1 7.2 Reduce Stress
## 7102 2.77 5.1 5.7 Increase Study Time
## 7103 5.14 7.4 6.0 Good Performance Habit
## 7104 3.60 7.6 6.1 Reduce Stress
## 7105 3.65 7.5 7.0 Reduce Stress
## 7106 3.17 7.8 6.9 Reduce Stress
## 7107 4.54 7.2 4.5 Good Performance Habit
## 7108 3.62 5.7 5.9 Improve Sleep
## 7109 3.65 6.8 4.8 Reduce Screen Time
## 7110 4.31 8.1 7.4 Reduce Stress
## 7111 2.49 7.5 5.1 Increase Study Time
## 7112 7.55 6.8 4.4 Good Performance Habit
## 7113 6.23 7.2 6.5 Reduce Stress
## 7114 4.27 7.7 8.0 Reduce Stress
## 7115 5.58 7.4 8.3 Reduce Stress
## 7116 3.19 5.3 9.5 Improve Sleep
## 7117 5.20 8.2 1.0 Good Performance Habit
## 7118 2.05 6.2 4.4 Increase Study Time
## 7119 4.87 8.5 3.6 Good Performance Habit
## 7120 5.23 8.1 6.2 Reduce Stress
## 7121 4.29 5.7 4.4 Improve Sleep
## 7122 6.41 7.4 8.9 Reduce Stress
## 7123 3.43 8.5 5.4 Good Performance Habit
## 7124 5.24 7.9 3.1 Good Performance Habit
## 7125 6.07 8.2 3.3 Reduce Screen Time
## 7126 6.01 7.0 5.7 Good Performance Habit
## 7127 4.95 5.9 2.2 Improve Sleep
## 7128 8.20 9.5 2.0 Good Performance Habit
## 7129 6.52 8.0 4.9 Good Performance Habit
## 7130 6.25 5.9 6.0 Improve Sleep
## 7131 3.60 5.6 4.5 Improve Sleep
## 7132 5.14 8.6 7.5 Reduce Stress
## 7133 3.96 6.8 7.4 Reduce Stress
## 7134 8.95 6.2 2.7 Good Performance Habit
## 7135 5.72 7.2 7.3 Reduce Stress
## 7136 3.53 7.4 9.7 Reduce Stress
## 7137 6.66 4.5 3.6 Improve Sleep
## 7138 7.13 5.0 1.0 Improve Sleep
## 7139 3.89 5.5 4.6 Improve Sleep
## 7140 5.33 6.6 6.2 Reduce Stress
## 7141 9.81 7.8 7.0 Reduce Stress
## 7142 5.08 9.3 4.0 Good Performance Habit
## 7143 5.68 6.7 9.1 Reduce Stress
## 7144 11.03 5.5 6.2 Improve Sleep
## 7145 4.99 6.0 5.6 Reduce Screen Time
## 7146 2.72 7.1 6.0 Increase Study Time
## 7147 3.17 6.6 5.3 Good Performance Habit
## 7148 5.27 9.6 5.2 Good Performance Habit
## 7149 6.50 7.5 3.5 Reduce Screen Time
## 7150 3.31 5.7 6.2 Improve Sleep
## 7151 1.06 8.1 2.4 Increase Study Time
## 7152 6.10 5.1 5.7 Improve Sleep
## 7153 4.58 8.1 4.3 Good Performance Habit
## 7154 4.03 7.4 5.3 Good Performance Habit
## 7155 3.28 7.6 1.9 Good Performance Habit
## 7156 7.15 5.2 6.7 Improve Sleep
## 7157 4.67 7.4 3.8 Good Performance Habit
## 7158 2.45 7.5 6.2 Increase Study Time
## 7159 3.06 7.5 5.7 Reduce Screen Time
## 7160 4.11 6.2 1.0 Good Performance Habit
## 7161 2.17 7.5 1.0 Increase Study Time
## 7162 3.98 7.6 8.4 Reduce Stress
## 7163 7.21 5.2 7.0 Improve Sleep
## 7164 6.63 5.7 7.7 Improve Sleep
## 7165 6.92 6.7 7.0 Reduce Stress
## 7166 6.89 7.6 7.1 Reduce Stress
## 7167 5.28 6.6 4.7 Good Performance Habit
## 7168 5.71 7.9 7.8 Reduce Stress
## 7169 1.63 6.9 9.7 Increase Study Time
## 7170 6.45 7.7 6.6 Reduce Stress
## 7171 6.20 4.9 2.8 Improve Sleep
## 7172 5.45 7.1 3.0 Reduce Screen Time
## 7173 5.43 9.0 1.0 Good Performance Habit
## 7174 2.90 5.7 6.1 Increase Study Time
## 7175 4.07 7.0 4.5 Reduce Screen Time
## 7176 1.94 7.3 4.5 Increase Study Time
## 7177 4.06 6.5 4.6 Good Performance Habit
## 7178 4.49 5.7 3.0 Improve Sleep
## 7179 3.74 9.5 5.5 Good Performance Habit
## 7180 7.23 7.3 6.2 Reduce Stress
## 7181 3.37 7.1 5.1 Good Performance Habit
## 7182 5.63 8.3 4.5 Reduce Screen Time
## 7183 5.38 7.0 7.5 Reduce Stress
## 7184 4.65 5.8 2.7 Improve Sleep
## 7185 6.07 5.4 3.4 Improve Sleep
## 7186 5.75 8.6 7.1 Reduce Stress
## 7187 4.26 7.5 4.6 Good Performance Habit
## 7188 7.53 5.6 5.5 Improve Sleep
## 7189 4.72 7.0 1.5 Good Performance Habit
## 7190 6.20 5.4 4.2 Improve Sleep
## 7191 2.99 7.4 5.1 Increase Study Time
## 7192 3.23 8.7 3.6 Good Performance Habit
## 7193 5.33 6.7 4.6 Good Performance Habit
## 7194 9.46 7.5 6.8 Reduce Stress
## 7195 2.55 7.5 1.0 Increase Study Time
## 7196 2.70 5.6 7.9 Increase Study Time
## 7197 3.52 7.6 6.5 Reduce Stress
## 7198 4.15 8.2 4.6 Reduce Screen Time
## 7199 5.13 8.0 4.6 Reduce Screen Time
## 7200 7.01 6.3 3.9 Good Performance Habit
## 7201 4.68 8.0 2.9 Reduce Screen Time
## 7202 6.15 6.8 4.9 Good Performance Habit
## 7203 5.05 7.6 3.3 Good Performance Habit
## 7204 3.90 8.6 5.8 Good Performance Habit
## 7205 4.07 6.6 2.6 Good Performance Habit
## 7206 5.96 5.5 6.6 Improve Sleep
## 7207 5.36 5.9 5.8 Improve Sleep
## 7208 7.58 8.0 2.7 Good Performance Habit
## 7209 5.40 5.4 4.4 Improve Sleep
## 7210 4.79 6.0 1.0 Good Performance Habit
## 7211 2.82 6.0 7.2 Increase Study Time
## 7212 3.55 5.0 4.0 Improve Sleep
## 7213 5.73 7.9 6.0 Good Performance Habit
## 7214 5.64 6.8 1.4 Good Performance Habit
## 7215 8.22 7.4 5.9 Reduce Screen Time
## 7216 3.83 6.2 6.2 Reduce Stress
## 7217 6.29 7.0 8.5 Reduce Stress
## 7218 4.90 8.5 3.6 Good Performance Habit
## 7219 1.04 5.5 5.2 Increase Study Time
## 7220 2.81 5.1 2.5 Increase Study Time
## 7221 5.54 7.8 3.0 Good Performance Habit
## 7222 4.35 6.3 4.9 Reduce Screen Time
## 7223 3.76 7.1 6.2 Reduce Stress
## 7224 7.18 5.9 3.6 Improve Sleep
## 7225 4.62 7.5 9.3 Reduce Stress
## 7226 5.61 8.6 6.6 Reduce Stress
## 7227 6.53 5.6 2.7 Improve Sleep
## 7228 4.17 7.7 4.3 Reduce Screen Time
## 7229 6.30 8.0 6.5 Reduce Stress
## 7230 3.13 8.5 4.5 Good Performance Habit
## 7231 2.57 5.9 8.4 Increase Study Time
## 7232 7.20 5.2 8.3 Improve Sleep
## 7233 7.57 7.8 7.4 Reduce Stress
## 7234 6.46 5.2 5.6 Improve Sleep
## 7235 3.59 6.8 5.7 Good Performance Habit
## 7236 4.39 7.0 7.0 Reduce Stress
## 7237 3.25 6.0 7.4 Reduce Stress
## 7238 3.24 8.6 3.5 Reduce Screen Time
## 7239 5.30 8.3 3.9 Good Performance Habit
## 7240 4.14 7.7 2.6 Reduce Screen Time
## 7241 7.27 8.4 4.4 Good Performance Habit
## 7242 2.03 7.0 3.8 Increase Study Time
## 7243 4.04 7.1 5.0 Good Performance Habit
## 7244 2.69 7.5 6.7 Increase Study Time
## 7245 2.52 7.5 4.0 Increase Study Time
## 7246 8.65 6.4 5.9 Good Performance Habit
## 7247 8.06 6.5 5.2 Good Performance Habit
## 7248 5.84 9.3 7.1 Reduce Stress
## 7249 6.05 8.0 4.0 Reduce Screen Time
## 7250 6.19 5.0 2.2 Improve Sleep
## 7251 5.10 7.8 4.4 Good Performance Habit
## 7252 0.59 8.0 1.0 Increase Study Time
## 7253 0.65 8.6 4.4 Increase Study Time
## 7254 6.11 7.1 3.2 Good Performance Habit
## 7255 0.04 5.7 5.7 Increase Study Time
## 7256 7.72 5.3 6.8 Improve Sleep
## 7257 6.58 7.4 5.4 Good Performance Habit
## 7258 5.59 6.8 5.1 Good Performance Habit
## 7259 5.71 7.9 3.5 Reduce Screen Time
## 7260 6.35 6.9 7.0 Reduce Stress
## 7261 3.81 7.9 5.3 Good Performance Habit
## 7262 8.55 6.8 4.9 Reduce Screen Time
## 7263 4.47 7.3 5.4 Good Performance Habit
## 7264 3.19 6.6 4.6 Good Performance Habit
## 7265 8.57 6.6 2.3 Good Performance Habit
## 7266 5.25 6.2 4.8 Good Performance Habit
## 7267 5.63 5.4 6.8 Improve Sleep
## 7268 7.31 7.3 6.1 Reduce Stress
## 7269 9.25 7.2 1.4 Good Performance Habit
## 7270 4.91 7.5 4.4 Reduce Screen Time
## 7271 5.19 4.6 3.8 Improve Sleep
## 7272 2.27 7.4 2.6 Increase Study Time
## 7273 5.04 5.8 7.3 Improve Sleep
## 7274 8.24 5.7 2.7 Improve Sleep
## 7275 3.48 5.9 4.7 Improve Sleep
## 7276 3.21 6.8 8.2 Reduce Stress
## 7277 1.67 4.8 3.2 Increase Study Time
## 7278 2.47 7.8 9.7 Increase Study Time
## 7279 2.40 6.7 1.7 Increase Study Time
## 7280 5.00 6.9 2.2 Good Performance Habit
## 7281 5.54 7.1 7.6 Reduce Stress
## 7282 1.03 7.0 5.3 Increase Study Time
## 7283 5.81 7.4 4.4 Good Performance Habit
## 7284 7.51 6.4 6.5 Reduce Stress
## 7285 6.64 6.7 2.9 Reduce Screen Time
## 7286 3.50 5.1 5.5 Improve Sleep
## 7287 6.59 4.5 4.8 Improve Sleep
## 7288 3.98 7.6 4.9 Good Performance Habit
## 7289 2.80 7.0 4.1 Increase Study Time
## 7290 2.22 7.0 5.6 Increase Study Time
## 7291 2.06 6.7 2.1 Increase Study Time
## 7292 4.32 6.1 6.4 Reduce Stress
## 7293 6.15 7.8 5.3 Good Performance Habit
## 7294 1.45 6.9 4.8 Increase Study Time
## 7295 1.03 5.3 4.0 Increase Study Time
## 7296 7.27 7.6 4.8 Reduce Screen Time
## 7297 3.11 9.1 6.6 Reduce Stress
## 7298 9.33 6.2 6.9 Reduce Stress
## 7299 5.74 7.6 4.1 Good Performance Habit
## 7300 2.18 7.5 4.5 Increase Study Time
## 7301 6.80 6.6 7.7 Reduce Stress
## 7302 6.98 8.2 4.2 Good Performance Habit
## 7303 1.62 6.1 5.2 Increase Study Time
## 7304 4.47 8.5 6.0 Reduce Screen Time
## 7305 7.67 4.8 1.0 Improve Sleep
## 7306 1.98 7.4 3.5 Increase Study Time
## 7307 5.81 8.1 8.4 Reduce Stress
## 7308 5.64 6.8 4.9 Good Performance Habit
## 7309 8.80 7.2 4.1 Good Performance Habit
## 7310 7.56 5.3 6.0 Improve Sleep
## 7311 4.19 8.2 5.9 Good Performance Habit
## 7312 2.16 7.6 2.7 Increase Study Time
## 7313 4.28 8.1 3.7 Reduce Screen Time
## 7314 5.16 8.0 6.5 Reduce Stress
## 7315 4.92 4.9 3.7 Improve Sleep
## 7316 4.11 7.1 7.3 Reduce Stress
## 7317 3.10 5.7 1.0 Improve Sleep
## 7318 7.46 8.6 5.8 Reduce Screen Time
## 7319 4.21 8.3 8.9 Reduce Stress
## 7320 3.50 7.4 4.9 Good Performance Habit
## 7321 5.39 3.0 3.6 Improve Sleep
## 7322 5.24 8.5 3.8 Good Performance Habit
## 7323 4.94 8.1 5.8 Good Performance Habit
## 7324 7.33 4.6 4.8 Improve Sleep
## 7325 2.98 4.4 6.2 Increase Study Time
## 7326 5.49 9.9 5.1 Reduce Screen Time
## 7327 6.98 4.7 2.3 Improve Sleep
## 7328 4.08 6.6 5.4 Reduce Screen Time
## 7329 5.27 4.7 2.1 Improve Sleep
## 7330 6.26 7.4 6.1 Reduce Stress
## 7331 6.01 8.1 5.5 Good Performance Habit
## 7332 5.02 5.6 2.4 Improve Sleep
## 7333 2.56 8.2 7.6 Increase Study Time
## 7334 3.22 5.0 5.5 Improve Sleep
## 7335 5.02 4.8 4.4 Improve Sleep
## 7336 4.41 6.7 5.7 Good Performance Habit
## 7337 4.39 8.5 5.4 Reduce Screen Time
## 7338 3.95 6.9 1.0 Reduce Screen Time
## 7339 1.58 6.5 6.6 Increase Study Time
## 7340 6.20 7.2 4.8 Good Performance Habit
## 7341 2.92 8.5 7.7 Increase Study Time
## 7342 8.09 7.8 5.2 Good Performance Habit
## 7343 10.47 6.0 5.2 Good Performance Habit
## 7344 6.55 8.9 6.6 Reduce Stress
## 7345 5.92 6.0 6.7 Reduce Stress
## 7346 3.76 8.3 1.0 Good Performance Habit
## 7347 3.07 7.0 3.0 Good Performance Habit
## 7348 4.20 6.2 5.2 Good Performance Habit
## 7349 6.99 8.2 6.5 Reduce Stress
## 7350 5.07 6.8 2.8 Good Performance Habit
## 7351 1.81 6.7 6.7 Increase Study Time
## 7352 6.58 8.4 4.4 Good Performance Habit
## 7353 4.02 6.5 3.9 Good Performance Habit
## 7354 6.62 7.3 8.0 Reduce Stress
## 7355 5.02 9.3 8.4 Reduce Stress
## 7356 3.46 6.6 1.7 Good Performance Habit
## 7357 4.10 8.9 4.7 Reduce Screen Time
## 7358 6.45 7.6 5.7 Good Performance Habit
## 7359 3.88 6.3 5.3 Reduce Screen Time
## 7360 7.63 7.5 5.8 Good Performance Habit
## 7361 3.46 6.4 6.4 Reduce Stress
## 7362 7.82 6.4 3.9 Reduce Screen Time
## 7363 2.40 7.7 5.6 Increase Study Time
## 7364 2.88 5.0 8.9 Increase Study Time
## 7365 6.17 5.7 6.2 Improve Sleep
## 7366 7.95 7.9 4.3 Reduce Screen Time
## 7367 4.42 6.3 2.4 Good Performance Habit
## 7368 6.56 9.6 3.7 Good Performance Habit
## 7369 3.18 3.0 6.1 Improve Sleep
## 7370 3.02 6.7 6.4 Reduce Stress
## 7371 5.04 4.6 9.3 Improve Sleep
## 7372 9.21 5.4 7.2 Improve Sleep
## 7373 4.47 8.9 3.8 Good Performance Habit
## 7374 1.85 7.5 4.8 Increase Study Time
## 7375 0.14 7.1 4.4 Increase Study Time
## 7376 4.82 7.1 5.7 Good Performance Habit
## 7377 6.17 6.0 8.0 Reduce Stress
## 7378 4.26 6.7 3.0 Good Performance Habit
## 7379 5.29 7.6 7.0 Reduce Stress
## 7380 3.43 5.5 6.0 Improve Sleep
## 7381 7.43 6.7 6.6 Reduce Stress
## 7382 5.94 5.0 2.2 Improve Sleep
## 7383 2.21 3.4 1.3 Increase Study Time
## 7384 3.73 6.3 5.4 Good Performance Habit
## 7385 7.33 5.4 5.2 Improve Sleep
## 7386 4.87 5.4 8.1 Improve Sleep
## 7387 0.28 6.7 6.2 Increase Study Time
## 7388 4.14 7.1 6.0 Good Performance Habit
## 7389 3.92 7.6 6.0 Reduce Screen Time
## 7390 0.70 8.9 5.5 Increase Study Time
## 7391 5.81 5.0 2.0 Improve Sleep
## 7392 7.63 8.3 3.6 Good Performance Habit
## 7393 3.81 7.2 5.1 Good Performance Habit
## 7394 3.12 7.0 4.1 Good Performance Habit
## 7395 4.44 8.2 6.5 Reduce Stress
## 7396 3.93 8.1 3.6 Reduce Screen Time
## 7397 4.71 8.9 5.5 Good Performance Habit
## 7398 5.88 5.0 3.9 Improve Sleep
## 7399 1.73 6.4 6.5 Increase Study Time
## 7400 4.18 7.8 5.2 Good Performance Habit
## 7401 8.57 6.9 4.1 Good Performance Habit
## 7402 4.56 6.1 4.9 Good Performance Habit
## 7403 5.04 7.4 6.1 Reduce Stress
## 7404 5.50 8.6 4.4 Good Performance Habit
## 7405 3.20 8.0 1.7 Good Performance Habit
## 7406 2.07 5.5 4.4 Increase Study Time
## 7407 9.32 6.8 5.9 Good Performance Habit
## 7408 4.87 7.7 4.3 Reduce Screen Time
## 7409 2.82 8.1 4.9 Increase Study Time
## 7410 6.56 7.5 8.5 Reduce Stress
## 7411 4.02 6.4 5.7 Good Performance Habit
## 7412 2.97 5.5 6.8 Increase Study Time
## 7413 3.80 7.7 7.0 Reduce Stress
## 7414 2.13 5.7 4.0 Increase Study Time
## 7415 2.80 4.4 3.9 Increase Study Time
## 7416 6.59 6.8 4.7 Good Performance Habit
## 7417 5.03 5.6 5.0 Improve Sleep
## 7418 4.27 6.3 2.9 Reduce Screen Time
## 7419 7.39 8.0 4.2 Reduce Screen Time
## 7420 6.21 6.6 5.9 Good Performance Habit
## 7421 4.01 6.6 6.0 Good Performance Habit
## 7422 1.88 5.3 2.3 Increase Study Time
## 7423 3.74 8.2 6.1 Reduce Stress
## 7424 7.33 5.2 7.5 Improve Sleep
## 7425 2.96 7.1 5.0 Increase Study Time
## 7426 9.07 8.2 4.8 Good Performance Habit
## 7427 4.38 8.0 9.3 Reduce Stress
## 7428 2.12 7.5 4.4 Increase Study Time
## 7429 3.91 7.8 2.7 Reduce Screen Time
## 7430 7.66 7.2 3.2 Good Performance Habit
## 7431 3.58 5.9 7.8 Improve Sleep
## 7432 5.70 7.0 7.0 Reduce Stress
## 7433 6.27 5.4 3.1 Improve Sleep
## 7434 3.71 9.2 5.5 Good Performance Habit
## 7435 6.90 8.2 3.2 Reduce Screen Time
## 7436 7.62 6.0 4.1 Good Performance Habit
## 7437 6.38 8.6 7.8 Reduce Stress
## 7438 1.32 8.1 3.4 Increase Study Time
## 7439 5.42 7.0 6.4 Reduce Stress
## 7440 6.28 8.8 3.7 Good Performance Habit
## 7441 6.59 7.2 4.8 Good Performance Habit
## 7442 8.45 8.2 6.3 Reduce Stress
## 7443 5.42 7.5 3.6 Good Performance Habit
## 7444 4.93 6.1 3.4 Good Performance Habit
## 7445 0.78 5.2 6.1 Increase Study Time
## 7446 2.52 7.8 7.4 Increase Study Time
## 7447 7.07 6.8 3.4 Good Performance Habit
## 7448 2.56 7.2 6.1 Increase Study Time
## 7449 4.36 7.1 3.1 Good Performance Habit
## 7450 1.49 8.2 5.8 Increase Study Time
## 7451 4.26 7.2 4.3 Good Performance Habit
## 7452 2.41 6.5 2.7 Increase Study Time
## 7453 5.76 7.2 2.6 Reduce Screen Time
## 7454 4.67 6.9 7.1 Reduce Stress
## 7455 5.51 6.5 4.7 Good Performance Habit
## 7456 1.78 6.6 5.9 Increase Study Time
## 7457 4.42 7.4 2.8 Good Performance Habit
## 7458 6.50 8.2 8.0 Reduce Stress
## 7459 0.55 8.0 9.3 Increase Study Time
## 7460 3.59 6.2 3.7 Good Performance Habit
## 7461 4.62 6.5 3.9 Good Performance Habit
## 7462 6.43 5.6 4.2 Improve Sleep
## 7463 5.99 8.1 6.4 Reduce Stress
## 7464 6.05 6.9 6.2 Reduce Stress
## 7465 5.48 8.1 5.3 Good Performance Habit
## 7466 6.36 6.6 4.8 Reduce Screen Time
## 7467 4.50 7.0 7.4 Reduce Stress
## 7468 4.59 7.2 6.3 Reduce Stress
## 7469 2.49 5.9 2.8 Increase Study Time
## 7470 4.40 6.2 3.7 Good Performance Habit
## 7471 4.31 6.9 5.4 Good Performance Habit
## 7472 7.89 7.1 4.5 Reduce Screen Time
## 7473 2.61 7.3 5.8 Increase Study Time
## 7474 5.35 5.8 5.2 Improve Sleep
## 7475 4.26 5.6 4.8 Improve Sleep
## 7476 4.93 7.8 5.0 Good Performance Habit
## 7477 6.98 5.8 4.5 Improve Sleep
## 7478 4.71 7.1 6.1 Reduce Stress
## 7479 3.01 6.2 3.6 Good Performance Habit
## 7480 5.06 7.4 4.7 Good Performance Habit
## 7481 6.78 7.3 4.1 Reduce Screen Time
## 7482 5.49 8.2 2.1 Good Performance Habit
## 7483 6.26 9.0 3.7 Good Performance Habit
## 7484 2.16 5.7 3.7 Increase Study Time
## 7485 6.73 8.6 8.6 Reduce Stress
## 7486 3.92 6.4 7.5 Reduce Stress
## 7487 2.49 7.2 4.4 Increase Study Time
## 7488 5.52 7.2 3.7 Good Performance Habit
## 7489 2.04 6.4 6.1 Increase Study Time
## 7490 5.43 8.8 5.4 Good Performance Habit
## 7491 8.05 6.0 1.0 Reduce Screen Time
## 7492 3.79 5.2 6.9 Improve Sleep
## 7493 3.13 7.7 2.0 Good Performance Habit
## 7494 7.11 6.9 5.4 Reduce Screen Time
## 7495 6.19 6.4 5.4 Good Performance Habit
## 7496 6.62 9.2 2.7 Reduce Screen Time
## 7497 1.10 6.3 5.5 Increase Study Time
## 7498 3.23 6.4 5.0 Good Performance Habit
## 7499 8.59 5.4 5.0 Improve Sleep
## 7500 3.26 7.4 1.0 Reduce Screen Time
## 7501 3.99 8.1 5.7 Reduce Screen Time
## 7502 5.14 7.5 7.0 Reduce Stress
## 7503 5.33 9.7 8.4 Reduce Stress
## 7504 4.53 6.0 6.1 Reduce Stress
## 7505 0.83 7.6 9.1 Increase Study Time
## 7506 5.99 6.6 5.8 Good Performance Habit
## 7507 2.58 6.5 1.5 Increase Study Time
## 7508 6.81 6.5 4.4 Good Performance Habit
## 7509 7.38 7.0 4.5 Reduce Screen Time
## 7510 2.71 6.2 7.7 Increase Study Time
## 7511 5.17 7.2 3.5 Good Performance Habit
## 7512 8.15 6.7 1.9 Good Performance Habit
## 7513 8.32 7.7 8.1 Reduce Stress
## 7514 6.83 6.1 6.0 Good Performance Habit
## 7515 3.90 7.2 9.2 Reduce Stress
## 7516 5.75 7.4 5.4 Good Performance Habit
## 7517 3.05 5.6 5.3 Improve Sleep
## 7518 7.93 8.5 5.1 Reduce Screen Time
## 7519 5.65 6.5 3.0 Reduce Screen Time
## 7520 7.72 7.0 1.9 Good Performance Habit
## 7521 0.89 6.9 3.7 Increase Study Time
## 7522 3.81 5.6 6.7 Improve Sleep
## 7523 3.89 9.1 6.4 Reduce Stress
## 7524 4.13 5.2 5.3 Improve Sleep
## 7525 2.43 6.3 4.2 Increase Study Time
## 7526 5.84 6.4 4.1 Good Performance Habit
## 7527 3.18 8.6 2.2 Good Performance Habit
## 7528 8.64 7.0 7.5 Reduce Stress
## 7529 4.18 7.0 2.2 Good Performance Habit
## 7530 3.99 7.7 7.1 Reduce Stress
## 7531 3.50 7.9 5.5 Good Performance Habit
## 7532 6.09 7.2 5.7 Good Performance Habit
## 7533 5.60 8.0 8.0 Reduce Stress
## 7534 3.00 7.4 4.6 Good Performance Habit
## 7535 0.77 6.3 5.1 Increase Study Time
## 7536 4.21 6.2 5.6 Reduce Screen Time
## 7537 3.25 7.0 3.3 Good Performance Habit
## 7538 4.93 5.6 4.9 Improve Sleep
## 7539 3.17 6.9 6.1 Reduce Stress
## 7540 5.53 7.1 3.6 Good Performance Habit
## 7541 2.63 7.7 5.2 Increase Study Time
## 7542 5.44 7.5 4.6 Reduce Screen Time
## 7543 4.46 7.2 8.0 Reduce Stress
## 7544 6.83 9.8 4.8 Good Performance Habit
## 7545 4.64 4.7 4.0 Improve Sleep
## 7546 6.18 7.6 2.0 Good Performance Habit
## 7547 4.33 4.0 6.0 Improve Sleep
## 7548 4.52 6.3 2.6 Good Performance Habit
## 7549 3.55 7.3 5.5 Good Performance Habit
## 7550 2.34 10.0 2.9 Increase Study Time
## 7551 5.30 6.1 5.5 Reduce Screen Time
## 7552 4.88 6.4 3.7 Good Performance Habit
## 7553 8.07 6.5 9.8 Reduce Stress
## 7554 5.86 8.8 3.8 Good Performance Habit
## 7555 8.64 6.8 4.3 Good Performance Habit
## 7556 8.81 9.3 2.2 Reduce Screen Time
## 7557 5.48 7.7 5.2 Good Performance Habit
## 7558 2.93 6.8 5.9 Increase Study Time
## 7559 4.51 7.0 2.7 Reduce Screen Time
## 7560 7.00 8.0 7.1 Reduce Stress
## 7561 4.86 4.8 9.0 Improve Sleep
## 7562 7.16 6.7 3.1 Good Performance Habit
## 7563 4.25 6.4 7.9 Reduce Stress
## 7564 5.18 7.6 4.5 Reduce Screen Time
## 7565 6.83 7.9 2.0 Good Performance Habit
## 7566 6.30 8.5 3.9 Good Performance Habit
## 7567 5.66 7.3 8.8 Reduce Stress
## 7568 5.49 6.7 4.2 Good Performance Habit
## 7569 6.15 7.4 1.5 Good Performance Habit
## 7570 4.84 7.4 5.3 Good Performance Habit
## 7571 6.99 7.2 4.3 Reduce Screen Time
## 7572 3.84 6.1 3.9 Good Performance Habit
## 7573 11.03 8.5 6.6 Reduce Stress
## 7574 5.47 7.0 4.1 Reduce Screen Time
## 7575 3.34 4.8 4.2 Improve Sleep
## 7576 1.78 6.0 2.4 Increase Study Time
## 7577 3.20 9.1 2.0 Reduce Screen Time
## 7578 5.79 6.2 6.3 Reduce Stress
## 7579 4.03 8.6 3.3 Reduce Screen Time
## 7580 7.31 7.5 7.3 Reduce Stress
## 7581 4.30 5.6 7.7 Improve Sleep
## 7582 2.91 6.6 6.1 Increase Study Time
## 7583 4.36 8.0 4.7 Good Performance Habit
## 7584 3.91 6.9 6.6 Reduce Stress
## 7585 4.59 7.7 4.5 Good Performance Habit
## 7586 2.69 7.8 5.4 Increase Study Time
## 7587 4.70 6.0 6.1 Reduce Stress
## 7588 1.22 5.8 5.9 Increase Study Time
## 7589 5.25 6.1 7.6 Reduce Stress
## 7590 4.71 7.1 2.3 Good Performance Habit
## 7591 4.67 7.8 2.8 Good Performance Habit
## 7592 3.35 8.1 5.0 Good Performance Habit
## 7593 4.87 4.5 1.0 Improve Sleep
## 7594 5.38 7.8 5.2 Reduce Screen Time
## 7595 1.50 7.5 3.2 Increase Study Time
## 7596 6.93 6.3 3.2 Good Performance Habit
## 7597 4.68 8.3 4.4 Reduce Screen Time
## 7598 5.95 6.9 4.2 Good Performance Habit
## 7599 8.03 8.7 5.7 Good Performance Habit
## 7600 2.51 7.0 4.0 Increase Study Time
## 7601 3.00 7.2 5.7 Good Performance Habit
## 7602 3.07 9.2 6.8 Reduce Stress
## 7603 5.07 5.7 5.7 Improve Sleep
## 7604 2.98 6.6 5.1 Increase Study Time
## 7605 3.26 9.0 6.8 Reduce Stress
## 7606 8.48 8.2 5.1 Reduce Screen Time
## 7607 4.50 5.4 7.6 Improve Sleep
## 7608 5.82 7.5 6.6 Reduce Stress
## 7609 7.02 7.8 3.7 Reduce Screen Time
## 7610 7.93 7.4 4.5 Good Performance Habit
## 7611 2.15 5.6 1.1 Increase Study Time
## 7612 5.79 8.9 2.4 Good Performance Habit
## 7613 6.55 5.1 2.0 Improve Sleep
## 7614 7.25 5.6 3.1 Improve Sleep
## 7615 3.68 4.9 5.3 Improve Sleep
## 7616 4.16 6.1 5.8 Good Performance Habit
## 7617 5.40 8.2 3.4 Good Performance Habit
## 7618 5.12 7.3 6.1 Reduce Stress
## 7619 4.37 7.1 6.8 Reduce Stress
## 7620 3.80 7.6 6.4 Reduce Stress
## 7621 4.77 8.4 3.6 Reduce Screen Time
## 7622 4.45 8.1 2.7 Good Performance Habit
## 7623 5.52 5.3 3.3 Improve Sleep
## 7624 3.77 7.1 8.6 Reduce Stress
## 7625 2.97 6.6 3.0 Increase Study Time
## 7626 4.10 7.8 6.3 Reduce Stress
## 7627 4.59 7.9 5.2 Good Performance Habit
## 7628 7.15 5.7 7.7 Improve Sleep
## 7629 4.22 5.6 6.4 Improve Sleep
## 7630 0.81 9.3 6.2 Increase Study Time
## 7631 9.43 3.7 4.9 Improve Sleep
## 7632 7.45 8.8 5.2 Reduce Screen Time
## 7633 6.21 8.0 2.9 Good Performance Habit
## 7634 5.99 8.9 5.0 Good Performance Habit
## 7635 5.11 4.3 3.5 Improve Sleep
## 7636 8.55 4.1 5.0 Improve Sleep
## 7637 2.59 6.6 6.5 Increase Study Time
## 7638 6.54 6.2 5.1 Good Performance Habit
## 7639 6.56 8.2 2.5 Good Performance Habit
## 7640 9.82 6.9 3.6 Reduce Screen Time
## 7641 4.87 6.6 3.7 Reduce Screen Time
## 7642 8.13 5.0 3.5 Improve Sleep
## 7643 5.92 7.6 6.8 Reduce Stress
## 7644 3.05 7.4 1.0 Good Performance Habit
## 7645 2.83 6.9 8.0 Increase Study Time
## 7646 7.47 7.6 3.5 Good Performance Habit
## 7647 2.67 6.5 5.8 Increase Study Time
## 7648 4.47 6.4 5.9 Good Performance Habit
## 7649 8.43 7.3 2.4 Good Performance Habit
## 7650 3.14 5.5 6.7 Improve Sleep
## 7651 6.21 7.8 3.5 Good Performance Habit
## 7652 8.99 5.5 6.2 Improve Sleep
## 7653 8.18 8.4 4.6 Reduce Screen Time
## 7654 6.66 6.0 3.6 Good Performance Habit
## 7655 3.59 4.1 9.3 Improve Sleep
## 7656 8.74 8.2 6.3 Reduce Stress
## 7657 6.09 6.3 1.1 Good Performance Habit
## 7658 5.19 6.0 4.9 Reduce Screen Time
## 7659 2.88 6.0 2.3 Increase Study Time
## 7660 0.70 5.8 4.9 Increase Study Time
## 7661 5.85 6.7 8.9 Reduce Stress
## 7662 4.15 8.2 5.2 Good Performance Habit
## 7663 1.62 7.5 1.4 Increase Study Time
## 7664 6.89 6.1 6.1 Reduce Stress
## 7665 5.57 9.8 6.8 Reduce Stress
## 7666 3.84 7.6 1.8 Good Performance Habit
## 7667 4.24 6.7 3.5 Reduce Screen Time
## 7668 6.19 5.8 7.2 Improve Sleep
## 7669 6.12 9.1 6.5 Reduce Stress
## 7670 3.25 6.1 1.0 Good Performance Habit
## 7671 6.92 8.0 5.4 Good Performance Habit
## 7672 4.69 6.5 5.0 Good Performance Habit
## 7673 3.05 6.0 4.7 Good Performance Habit
## 7674 4.82 5.7 7.3 Improve Sleep
## 7675 5.15 7.7 2.2 Good Performance Habit
## 7676 7.43 8.8 5.8 Good Performance Habit
## 7677 6.45 8.4 7.6 Reduce Stress
## 7678 0.56 8.5 6.3 Increase Study Time
## 7679 2.60 6.9 6.6 Increase Study Time
## 7680 6.67 8.3 1.6 Good Performance Habit
## 7681 5.63 8.1 6.5 Reduce Stress
## 7682 3.14 8.2 5.3 Good Performance Habit
## 7683 4.05 5.4 6.4 Improve Sleep
## 7684 8.32 5.2 5.3 Improve Sleep
## 7685 0.30 7.8 3.9 Increase Study Time
## 7686 7.58 5.0 5.3 Improve Sleep
## 7687 7.23 6.5 4.9 Reduce Screen Time
## 7688 3.87 7.5 6.4 Reduce Stress
## 7689 4.53 7.8 5.2 Reduce Screen Time
## 7690 5.81 8.4 5.0 Good Performance Habit
## 7691 5.24 8.2 3.5 Good Performance Habit
## 7692 5.92 7.0 3.3 Reduce Screen Time
## 7693 7.48 7.3 4.5 Reduce Screen Time
## 7694 3.80 8.7 3.1 Reduce Screen Time
## 7695 5.07 5.4 6.0 Improve Sleep
## 7696 5.99 5.2 2.2 Improve Sleep
## 7697 4.20 6.7 1.0 Good Performance Habit
## 7698 5.01 9.0 3.9 Good Performance Habit
## 7699 8.00 8.9 5.4 Good Performance Habit
## 7700 0.96 8.5 4.1 Increase Study Time
## 7701 5.65 7.6 3.9 Good Performance Habit
## 7702 3.99 7.4 5.6 Good Performance Habit
## 7703 2.79 4.9 8.5 Increase Study Time
## 7704 4.61 7.5 3.9 Good Performance Habit
## 7705 5.82 6.9 7.3 Reduce Stress
## 7706 6.73 7.0 7.0 Reduce Stress
## 7707 3.54 8.0 3.9 Good Performance Habit
## 7708 6.38 9.3 4.9 Good Performance Habit
## 7709 7.99 8.4 2.2 Good Performance Habit
## 7710 5.44 8.6 7.3 Reduce Stress
## 7711 6.53 7.7 2.0 Good Performance Habit
## 7712 6.02 8.5 4.0 Good Performance Habit
## 7713 6.41 6.9 4.2 Reduce Screen Time
## 7714 3.18 7.4 5.0 Good Performance Habit
## 7715 7.53 7.4 3.1 Good Performance Habit
## 7716 6.01 10.0 5.6 Good Performance Habit
## 7717 8.77 4.4 3.1 Improve Sleep
## 7718 6.74 6.6 5.3 Reduce Screen Time
## 7719 3.34 6.4 3.7 Good Performance Habit
## 7720 7.44 6.6 7.3 Reduce Stress
## 7721 7.86 7.4 5.5 Reduce Screen Time
## 7722 7.23 7.8 4.9 Good Performance Habit
## 7723 4.51 5.8 3.3 Improve Sleep
## 7724 4.28 5.8 7.0 Improve Sleep
## 7725 7.82 7.8 6.3 Reduce Stress
## 7726 3.56 8.0 4.7 Good Performance Habit
## 7727 6.87 9.6 5.0 Good Performance Habit
## 7728 5.39 8.2 5.6 Reduce Screen Time
## 7729 3.80 7.0 2.0 Reduce Screen Time
## 7730 4.37 5.3 5.4 Improve Sleep
## 7731 4.04 7.4 5.2 Good Performance Habit
## 7732 6.13 6.7 2.6 Good Performance Habit
## 7733 3.79 6.3 3.3 Good Performance Habit
## 7734 4.95 7.4 6.3 Reduce Stress
## 7735 4.64 6.5 8.9 Reduce Stress
## 7736 5.90 5.8 7.8 Improve Sleep
## 7737 7.14 6.3 7.2 Reduce Stress
## 7738 2.15 8.2 5.6 Increase Study Time
## 7739 5.95 7.6 2.3 Good Performance Habit
## 7740 3.72 9.8 8.5 Reduce Stress
## 7741 4.71 7.2 3.9 Reduce Screen Time
## 7742 4.84 10.0 3.4 Reduce Screen Time
## 7743 8.26 6.6 7.1 Reduce Stress
## 7744 8.15 7.2 7.5 Reduce Stress
## 7745 4.63 6.6 5.9 Good Performance Habit
## 7746 4.63 7.1 1.0 Good Performance Habit
## 7747 8.01 6.3 3.8 Reduce Screen Time
## 7748 6.14 9.1 8.6 Reduce Stress
## 7749 8.87 7.3 9.8 Reduce Stress
## 7750 3.72 7.0 6.6 Reduce Stress
## 7751 7.40 5.9 6.1 Improve Sleep
## 7752 4.13 7.6 5.1 Good Performance Habit
## 7753 1.33 7.2 3.6 Increase Study Time
## 7754 6.63 6.3 4.6 Good Performance Habit
## 7755 3.21 6.5 8.1 Reduce Stress
## 7756 6.54 7.6 3.2 Good Performance Habit
## 7757 4.51 6.3 3.7 Good Performance Habit
## 7758 7.61 5.3 3.8 Improve Sleep
## 7759 2.38 6.3 5.1 Increase Study Time
## 7760 1.97 7.6 5.9 Increase Study Time
## 7761 8.11 6.0 5.1 Good Performance Habit
## 7762 7.29 5.4 7.2 Improve Sleep
## 7763 5.32 6.9 3.1 Good Performance Habit
## 7764 1.86 5.9 5.7 Increase Study Time
## 7765 6.81 6.8 3.0 Reduce Screen Time
## 7766 10.02 8.3 4.2 Good Performance Habit
## 7767 4.37 7.5 3.8 Reduce Screen Time
## 7768 4.30 5.0 6.0 Improve Sleep
## 7769 3.41 7.1 4.8 Good Performance Habit
## 7770 6.00 5.9 3.1 Improve Sleep
## 7771 4.93 7.6 4.4 Reduce Screen Time
## 7772 2.01 7.9 3.4 Increase Study Time
## 7773 3.62 8.4 1.0 Good Performance Habit
## 7774 6.98 7.8 6.4 Reduce Stress
## 7775 2.80 7.1 2.9 Increase Study Time
## 7776 5.57 7.8 2.8 Good Performance Habit
## 7777 7.11 5.2 8.0 Improve Sleep
## 7778 6.56 5.9 4.1 Improve Sleep
## 7779 1.48 9.5 1.9 Increase Study Time
## 7780 6.20 8.4 3.3 Good Performance Habit
## 7781 2.81 5.0 4.8 Increase Study Time
## 7782 1.00 6.1 6.5 Increase Study Time
## 7783 5.63 5.0 4.6 Improve Sleep
## 7784 1.76 8.9 6.2 Increase Study Time
## 7785 4.53 8.5 7.8 Reduce Stress
## 7786 7.49 6.8 7.7 Reduce Stress
## 7787 6.12 8.4 5.0 Reduce Screen Time
## 7788 4.73 6.4 4.0 Good Performance Habit
## 7789 6.86 7.9 7.4 Reduce Stress
## 7790 5.12 6.2 9.9 Reduce Stress
## 7791 6.60 5.3 2.7 Improve Sleep
## 7792 7.25 6.6 5.5 Reduce Screen Time
## 7793 2.99 5.1 5.8 Increase Study Time
## 7794 8.30 5.7 8.3 Improve Sleep
## 7795 4.71 4.7 7.3 Improve Sleep
## 7796 5.11 6.5 6.9 Reduce Stress
## 7797 5.36 7.0 7.0 Reduce Stress
## 7798 4.42 7.4 6.0 Reduce Screen Time
## 7799 4.10 6.7 6.9 Reduce Stress
## 7800 6.05 6.2 4.2 Good Performance Habit
## 7801 3.76 7.8 3.9 Good Performance Habit
## 7802 5.93 8.3 6.2 Reduce Stress
## 7803 6.45 5.8 4.7 Improve Sleep
## 7804 3.83 7.5 5.5 Good Performance Habit
## 7805 4.32 6.0 3.6 Reduce Screen Time
## 7806 6.03 6.0 5.9 Good Performance Habit
## 7807 4.91 8.2 6.5 Reduce Stress
## 7808 6.23 5.9 4.5 Improve Sleep
## 7809 4.85 7.1 3.4 Good Performance Habit
## 7810 4.31 7.5 3.1 Reduce Screen Time
## 7811 4.53 7.1 3.7 Good Performance Habit
## 7812 5.59 7.7 6.8 Reduce Stress
## 7813 7.31 7.1 6.2 Reduce Stress
## 7814 1.61 7.0 6.4 Increase Study Time
## 7815 4.00 6.3 3.3 Good Performance Habit
## 7816 4.19 5.8 2.9 Improve Sleep
## 7817 3.37 6.6 2.9 Good Performance Habit
## 7818 4.02 7.0 6.2 Reduce Stress
## 7819 7.30 6.2 3.5 Good Performance Habit
## 7820 6.99 6.5 4.8 Good Performance Habit
## 7821 3.77 5.9 3.5 Improve Sleep
## 7822 2.09 6.1 5.2 Increase Study Time
## 7823 5.79 5.9 4.9 Improve Sleep
## 7824 5.92 8.0 4.4 Good Performance Habit
## 7825 2.61 6.8 5.3 Increase Study Time
## 7826 5.37 5.5 2.1 Improve Sleep
## 7827 5.82 6.3 7.9 Reduce Stress
## 7828 6.29 7.3 2.6 Good Performance Habit
## 7829 3.97 7.0 4.2 Good Performance Habit
## 7830 5.97 6.1 9.3 Reduce Stress
## 7831 4.65 6.7 5.8 Reduce Screen Time
## 7832 6.67 6.4 5.3 Good Performance Habit
## 7833 5.47 9.1 5.3 Good Performance Habit
## 7834 6.22 5.0 5.6 Improve Sleep
## 7835 5.00 7.4 6.4 Reduce Stress
## 7836 4.47 4.9 8.0 Improve Sleep
## 7837 5.44 8.0 6.1 Reduce Stress
## 7838 6.69 6.4 3.5 Good Performance Habit
## 7839 4.23 7.5 4.8 Good Performance Habit
## 7840 5.69 7.2 3.4 Reduce Screen Time
## 7841 9.83 4.6 3.8 Improve Sleep
## 7842 3.69 8.3 4.2 Good Performance Habit
## 7843 2.35 7.1 1.8 Increase Study Time
## 7844 3.09 5.6 7.0 Improve Sleep
## 7845 4.41 6.1 5.4 Good Performance Habit
## 7846 4.98 7.1 3.3 Good Performance Habit
## 7847 0.54 8.3 1.0 Increase Study Time
## 7848 1.04 8.3 5.0 Increase Study Time
## 7849 6.53 7.3 4.3 Good Performance Habit
## 7850 2.19 4.4 7.7 Increase Study Time
## 7851 6.33 5.5 10.0 Improve Sleep
## 7852 7.40 8.3 4.5 Reduce Screen Time
## 7853 0.86 5.8 5.9 Increase Study Time
## 7854 6.08 7.0 8.2 Reduce Stress
## 7855 5.05 7.2 5.4 Good Performance Habit
## 7856 4.31 8.3 4.8 Good Performance Habit
## 7857 5.74 6.6 7.2 Reduce Stress
## 7858 4.86 6.8 5.1 Good Performance Habit
## 7859 6.05 7.4 6.8 Reduce Stress
## 7860 8.62 7.2 4.5 Good Performance Habit
## 7861 5.58 7.3 1.4 Good Performance Habit
## 7862 2.57 6.8 5.7 Increase Study Time
## 7863 7.75 8.9 6.4 Reduce Stress
## 7864 7.21 5.8 7.2 Improve Sleep
## 7865 7.85 8.2 8.7 Reduce Stress
## 7866 5.75 6.8 7.1 Reduce Stress
## 7867 6.75 6.6 6.5 Reduce Stress
## 7868 8.90 5.8 5.3 Improve Sleep
## 7869 4.86 7.4 2.2 Reduce Screen Time
## 7870 3.77 7.4 4.9 Good Performance Habit
## 7871 7.87 7.3 5.7 Reduce Screen Time
## 7872 4.32 6.9 1.8 Good Performance Habit
## 7873 7.28 7.4 7.8 Reduce Stress
## 7874 3.95 4.3 3.7 Improve Sleep
## 7875 4.07 5.3 6.2 Improve Sleep
## 7876 5.61 6.6 4.2 Good Performance Habit
## 7877 5.65 7.6 6.2 Reduce Stress
## 7878 3.51 6.4 7.3 Reduce Stress
## 7879 8.24 8.0 5.6 Good Performance Habit
## 7880 4.18 8.2 6.4 Reduce Stress
## 7881 6.42 7.8 6.8 Reduce Stress
## 7882 3.23 7.5 4.6 Good Performance Habit
## 7883 3.83 4.8 5.6 Improve Sleep
## 7884 3.91 6.0 6.7 Reduce Stress
## 7885 5.35 6.8 6.1 Reduce Stress
## 7886 5.35 8.0 5.4 Good Performance Habit
## 7887 5.46 6.9 4.4 Reduce Screen Time
## 7888 5.07 8.6 8.1 Reduce Stress
## 7889 6.86 8.3 5.8 Good Performance Habit
## 7890 6.84 7.6 6.6 Reduce Stress
## 7891 4.18 7.1 1.0 Reduce Screen Time
## 7892 5.32 6.5 3.9 Good Performance Habit
## 7893 5.94 9.3 2.3 Good Performance Habit
## 7894 6.47 7.8 4.3 Reduce Screen Time
## 7895 6.06 5.3 7.1 Improve Sleep
## 7896 4.39 7.5 7.6 Reduce Stress
## 7897 4.41 6.0 6.4 Reduce Stress
## 7898 5.19 8.4 2.1 Good Performance Habit
## 7899 6.02 9.5 5.5 Good Performance Habit
## 7900 2.96 8.0 3.9 Increase Study Time
## 7901 3.09 7.4 6.7 Reduce Stress
## 7902 4.26 6.4 6.6 Reduce Stress
## 7903 5.22 5.7 3.2 Improve Sleep
## 7904 3.76 7.9 6.8 Reduce Stress
## 7905 4.19 6.9 4.7 Reduce Screen Time
## 7906 3.45 7.3 6.4 Reduce Stress
## 7907 6.05 7.2 7.3 Reduce Stress
## 7908 1.12 7.2 3.4 Increase Study Time
## 7909 5.02 6.8 6.4 Reduce Stress
## 7910 3.72 6.9 4.5 Good Performance Habit
## 7911 5.08 6.4 6.8 Reduce Stress
## 7912 5.40 7.6 1.0 Good Performance Habit
## 7913 0.78 6.8 6.4 Increase Study Time
## 7914 7.23 6.9 4.5 Good Performance Habit
## 7915 6.45 6.8 4.7 Good Performance Habit
## 7916 8.13 9.0 3.1 Reduce Screen Time
## 7917 6.57 7.8 6.3 Reduce Stress
## 7918 6.83 7.8 4.1 Good Performance Habit
## 7919 6.11 10.0 2.6 Reduce Screen Time
## 7920 8.17 6.6 8.7 Reduce Stress
## 7921 2.41 6.3 4.4 Increase Study Time
## 7922 4.84 7.2 3.3 Reduce Screen Time
## 7923 3.23 6.0 5.8 Reduce Screen Time
## 7924 6.76 7.7 6.6 Reduce Stress
## 7925 5.55 5.4 4.7 Improve Sleep
## 7926 8.24 6.9 6.8 Reduce Stress
## 7927 5.32 6.2 3.5 Reduce Screen Time
## 7928 4.69 6.4 4.3 Good Performance Habit
## 7929 4.70 4.3 5.0 Improve Sleep
## 7930 3.57 5.9 4.3 Improve Sleep
## 7931 1.03 8.0 5.9 Increase Study Time
## 7932 4.97 8.3 6.8 Reduce Stress
## 7933 4.18 6.0 3.9 Good Performance Habit
## 7934 4.16 4.6 3.5 Improve Sleep
## 7935 2.78 6.9 5.0 Increase Study Time
## 7936 5.22 8.5 3.3 Reduce Screen Time
## 7937 2.98 5.4 4.7 Increase Study Time
## 7938 5.56 8.0 4.4 Good Performance Habit
## 7939 4.56 6.6 7.5 Reduce Stress
## 7940 4.39 7.6 1.8 Good Performance Habit
## 7941 1.91 6.7 3.2 Increase Study Time
## 7942 5.68 5.8 3.9 Improve Sleep
## 7943 6.74 6.4 5.0 Good Performance Habit
## 7944 4.76 7.1 3.6 Good Performance Habit
## 7945 3.87 4.1 5.9 Improve Sleep
## 7946 6.87 8.7 5.9 Good Performance Habit
## 7947 6.57 6.8 3.2 Good Performance Habit
## 7948 4.54 6.5 3.1 Good Performance Habit
## 7949 10.76 7.8 2.8 Good Performance Habit
## 7950 7.46 6.5 7.2 Reduce Stress
## 7951 7.99 6.3 5.8 Good Performance Habit
## 7952 5.85 7.1 6.0 Good Performance Habit
## 7953 5.82 7.6 9.5 Reduce Stress
## 7954 3.08 4.7 5.4 Improve Sleep
## 7955 4.52 7.0 4.4 Reduce Screen Time
## 7956 5.13 5.5 2.3 Improve Sleep
## 7957 6.40 6.7 6.5 Reduce Stress
## 7958 4.03 5.3 5.0 Improve Sleep
## 7959 3.36 8.1 5.0 Good Performance Habit
## 7960 7.33 7.2 9.8 Reduce Stress
## 7961 5.24 8.6 5.6 Good Performance Habit
## 7962 6.89 6.9 4.2 Good Performance Habit
## 7963 5.87 5.7 4.9 Improve Sleep
## 7964 3.82 7.1 6.0 Good Performance Habit
## 7965 5.34 5.6 5.2 Improve Sleep
## 7966 0.21 6.0 7.4 Increase Study Time
## 7967 7.12 8.1 6.5 Reduce Stress
## 7968 6.34 8.3 4.2 Reduce Screen Time
## 7969 7.45 4.9 6.0 Improve Sleep
## 7970 4.59 7.0 5.0 Good Performance Habit
## 7971 8.67 5.4 9.7 Improve Sleep
## 7972 7.44 9.6 2.8 Good Performance Habit
## 7973 1.55 7.4 3.8 Increase Study Time
## 7974 1.52 6.1 1.9 Increase Study Time
## 7975 5.53 10.0 4.6 Good Performance Habit
## 7976 2.28 9.6 4.7 Increase Study Time
## 7977 4.72 5.7 3.1 Improve Sleep
## 7978 4.67 7.4 6.5 Reduce Stress
## 7979 4.40 6.4 4.1 Good Performance Habit
## 7980 7.98 6.3 6.8 Reduce Stress
## 7981 6.14 5.6 4.7 Improve Sleep
## 7982 6.28 9.3 4.1 Good Performance Habit
## 7983 5.48 7.1 4.9 Good Performance Habit
## 7984 10.90 8.8 4.1 Good Performance Habit
## 7985 7.64 7.2 8.4 Reduce Stress
## 7986 3.65 5.7 6.5 Improve Sleep
## 7987 6.12 6.3 6.9 Reduce Stress
## 7988 3.55 7.6 6.8 Reduce Stress
## 7989 4.67 7.8 5.0 Good Performance Habit
## 7990 4.85 5.8 5.2 Improve Sleep
## 7991 2.47 6.4 6.7 Increase Study Time
## 7992 1.56 6.9 5.9 Increase Study Time
## 7993 2.98 6.8 6.5 Increase Study Time
## 7994 6.20 5.6 4.2 Improve Sleep
## 7995 1.09 8.5 2.3 Increase Study Time
## 7996 6.45 9.7 5.4 Reduce Screen Time
## 7997 0.80 7.6 6.7 Increase Study Time
## 7998 3.76 6.8 6.9 Reduce Stress
## 7999 3.87 8.2 8.2 Reduce Stress
## 8000 6.87 4.9 2.0 Improve Sleep