Question
Unless otherwise specified, assume all α (p-value) thresholds to be 0.05, and all tests to be two-sided if that is an option. All calculations may be done with R or by hand unless otherwise specified. Please show and explain your work as much as possible, using latex for displaying all math.

1. You roll five six-sided dice. Write a script in R to calculate the probability of getting between 15 and 20 (inclusive) as the total amount of your roll (ie, the sum when you add up what is showing on all five dice). Exact solutions are preferable but approximate solutions are ok as long as they are precise.

2. Create a simulated dataset of 100 observations, where x is a random normal variable with mean 0 and standard deviation 1, and y = 0.1 + 2 ∗ x + ε, where epsilon is also a random normal error with mean 0 and sd 1. (One reminder: remember that in creating simulated data with, say, 100 observations, you need to use rnorm(100) for epsilon, not rnorm(1), to ensure that each observation gets a different error.)
a. Perform a t test for whether the mean of Y equals the mean of X using R.
b. Now perform this test by hand using just the first 5 observations. Please write out all your steps in latex.
c. Using R, test whether the mean of Y is significantly different from 0.
d. Again using the first five obsevations, test by hand whether the mean of Y is different from 0.
e. Assuming the mean and sd of Y that you calculate from the first five observations would not change, what is the minimum total number of observations you would need to be able to conclude that the mean of Y is different from 0 at the p = 0.01 confidence level?
f. Verify (d) (approximately) by increasing the simulated data to the n you calculated in (e) that would be necessary. If the test of Y = 0 is still not significant, explain why. (Go back to using the original 100-observation dataset for g and h.)
g. Create a categorical (factor) variable c, where
c=1 if x<−1,
c=3 if x>1,
and c=2otherwise. Use R to perform an F test for whether the mean of y differs across these three groups.
h. Using the first three observations for each group, calculate the same F test by hand.

3. Generate a new 100-observation dataset as before, except now y = 0.1 + 0.2 ∗ x + ε
a. Regress y on x using R, and report the results.
b. Discuss the coefficient on x and its standard error, and present the 95% CI.
c. Use R to calculate the p-value on the coefficient on x from the t value for that
coefficient. What does this p-value represent (be very precise in your language here)?
d. Discuss the F-statistic and its p-value, and calculate that p-value from the F statistic using R. What does this test and its p-value indicate?
e. Using the first five observations, calculate by hand the coefficient on x, its standard error, and the adjusted R2. Be sure to show your work.

4. Now generate y=0.1+0.2∗x−0.5∗x2+ ε with 100 observations.
a. Regress y on x and x2 and report the results. If x or x2 are not statistically significant, suggest why.
b. Based on the known coefficients that we used to create y, what is the effect on y of increasing x by 1 unit from 1 to 2?
c. Based on the coefficients estimated from 4(a), what is the effect on y of changing x from -0.5 to -0.7?

5. Now generate x2 as a random normal variable with a mean of -1 and a sd of 1. Create a new dataset
where y = 0.1+0.2∗x−0.5∗x∗x2 +ε.
a. Based on the known coefficients, what is the effect of increasing x2 from 0 to 1 with x held at its mean?
b. Regress y on x, x2, and their interaction. Based on the regression-estimated coefficients, what is the effect on y of shifting x from -0.5 to -0.7 with x2 held at 1?
c. Regress the current y on x alone. Using the R2 from this regression and the R2 from 5(b), perform by hand an F test of the complete model (5b) against the reduced, bivariate model. What does this test tell you?

6. Generate a new variable y2 using the data from (5) which is 1 if y > 0 and 0 otherwise.
a. Perform a logistic regression of y2 on x, x2, and their interaction, and interpret the results.
b. What is the effect of increasing x2 from 0 to 1 with x held at its mean on the probability that y2 is 1?

7. Generate a dataset with 300 observations and three variables: f, x1, and x2. f should be a factor with three levels, where level 1 corresponds to observations 1-100, level 2 to 101-200, and level 3 to 201-300. (Eg, f can be “a” for the first 100 observations, “b” for the second 100, and “c” for the third 100.) Create x1 such that the first 100 observations have a mean of 1 and sd of 2; the second 100 have a mean of 0 and sd of 1;and the third 100 have a mean of 1 and sd of 0.5. Create x2 such that the first 100 observations have a mean of 1 and sd of 2; the second 100 have a mean of 1 and sd of 1; and the third 100 have a mean of 0 and sd of 0.5. (Hint: It is probably easiest to create three 100-observation datasets first, and then stack them with rbind(). And make sure to convert f to a factor before proceeding.)
a. Using the k-means algorithm, peform a cluster analysis of these data using a k of 3 (use only x1 and x2 in your calculations; use f only to verify your results). Comparing your clusters with f, how many datapoints are correctly classified into the correct cluster? How similar are the centroids from your analysis to the true centers?
b. Perform a factor analysis of this data using your preferred function. Using the scree plot, how many factors do you think you should include? Speculate about how these results relate to those you got with the cluster analysis.
8. Generate a dataset of 200 observations, this time with 90 independent variables, each of mean 0 and sd 1.

Create y such that:
y=2x1 +...+2x30 −x31 −...−x60 +0∗x61 +...+0∗x90 +ε

where ε is a random normal variable with mean 0 and sd 10. (Ie, the first 30 x’s have a coefficient
of 2; the next 30 have a coefficient of -1; and the last 30 have a coefficient of 0.)

a. Perform an elastic net regression of y on all the x variables using just the first 100 observations. Use 10-fold cross-validation to find the best value of λ and approximately the best value of α.
b. How accurate are your coefficients from (a)? Summarize your results any way you like, but please don’t give us the raw coefficients from 90 variables.
c. Using the results from (b), predict y for the second 100 observations. How accurate is your prediction?
d. Attempt to compare the predictive accuracy here to the accuracy of a prediction made using regular
multiple regression. Explain your results, including if the regular regression failed for any reason.

9. As in problem 6,use the data from 8 to generate a new y2 that is 1 if y>0 and 0 otherwise.
a. Using the same process as in 8, estimate an SVM model of y2 on all the x variables for the first 100 variables. Use 10-fold cross-validation to select the best kernel.
b. Using the results from (a), predict y2 for the second 100 observations, and report your accuracy.
Solution Preview

These solutions may offer step-by-step problem-solving explanations or good writing examples that include modern styles of formatting and construction of bibliographies out of text citations and references.
Students may use these solutions for personal skill-building and practice.
Unethical use is strictly forbidden.

#### 1. You roll five six-sided dice. Write a script in R to calculate the probability of getting between 15 and 20 (inclusive) as the total amount of your roll (ie, the sum when you add up what is showing on all five dice). Exact solutions are preferable but approximate solutions are ok as long as they are precise.

```{r, eval = FALSE}
p <- 8
results <- numeric(10^p)
count <- 0
for (i in 1:10^p) {
result <- sum(sample(6, 5, replace=TRUE))
if (result>=15 & result<=20) {
    count <- count + 1
}
}

count/10^p

```
It is about $0.5571231$.


#### 2. Create a simulated dataset of 100 observations, where x is a random normal variable with mean 0 and standard deviation 1, and $y = 0.1 + 2 x + \epsilon$, where epsilon is also a random normal error with mean 0 and sd 1. (One reminder: remember that in creating simulated data with, say, 100 observations, you need to use `rnorm(100)` for epsilon, not `rnorm(1)`, to ensure that each observation gets a different error.)

```{r}
x <- rnorm(100)
epsilon <- rnorm(100)
y <- 0.1 + 2 * x + epsilon
```
##### a. Perform a t test for whether the mean of Y equals the mean of X using $R$.

```{r}
t.test(y, x)

```
##### b. Now perform this test by hand using just the first 5 observations. Please write out all your steps in latex.

- find the means for y and x, and denote them as $\bar{y}$ and $\bar{x}$ respectively:
```{r}
y.bar <- mean(y[1:5])
x.bar <- mean(x[1:5])
```
- Calculate the group standard error using
$$ s.e._{group} = \sqrt{\frac{s_{1}^2}{n_{1}}+\frac{s_{2}^2}{n_{2}}}$$
where $s_{i}$ i=1,2 is a standard deviation for $y$ and $x$ and $n_{i}$ i=1, 2 is the sample size of $y$ and $x$, 5 in this case.
```{r}
sd.group <- sqrt(sd(y)/5 + sd(x)/5)
```
This is only a preview of the solution.
Please use the purchase button to see the entire solution.
By purchasing this solution you'll be able to access the following files:
Solution.pdf
Solution.Rmd
Purchase Solution
$90.00
Google Pay
Amazon
Paypal
Mastercard
Visacard
Discover
Amex
View Available Mathematics Tutors 529 tutors matched
Ionut
(ionut)
Hi! MSc Applied Informatics & Computer Science Engineer. Practical experience in many CS & IT branches.Research work & homework
5/5 (5,654+ sessions)
2 hours avg response
Leo
(Leo)
Hi! I have been a professor in New York and taught in a math department and in an applied math department.
4.9/5 (5,652+ sessions)
2 hours avg response
Pranay
(math1983)
Ph.D. in mathematics and working as an Assistant Professor in University. I can provide help in mathematics, statistics and allied areas.
4.6/5 (5,512+ sessions)
1 hour avg response

Similar Homework Solutions

8.1.0PHP Version833msRequest Duration45MBMemory UsageGET college-homework-library/{category}/{subject}/{id}Route
    • Booting (584ms)time
    • Application (248ms)time
    • 1 x Booting (70.19%)
      584ms
      1 x Application (29.81%)
      248ms
      • Illuminate\Routing\Events\Routing (764μs)
      • Illuminate\Routing\Events\RouteMatched (351μs)
      • Illuminate\Foundation\Events\LocaleUpdated (2.51ms)
      • eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibrary (231μs)
      • eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibrary (143μs)
      • Illuminate\Database\Events\ConnectionEstablished (837μs)
      • Illuminate\Database\Events\StatementPrepared (4.31ms)
      • Illuminate\Database\Events\QueryExecuted (1.26ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (123μs)
      • eloquent.booting: App\Models\Subject (73μs)
      • eloquent.booted: App\Models\Subject (59μs)
      • Illuminate\Database\Events\StatementPrepared (1.52ms)
      • Illuminate\Database\Events\QueryExecuted (1.05ms)
      • eloquent.retrieved: App\Models\Subject (205μs)
      • eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibraryFile (132μs)
      • eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibraryFile (58μs)
      • Illuminate\Database\Events\StatementPrepared (638μs)
      • Illuminate\Database\Events\QueryExecuted (1.19ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (101μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (22μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (13μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (27μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (10μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (9μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (9μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (9μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (65μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (10μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (7μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (9μs)
      • eloquent.booting: App\Models\SubjectCat (868μs)
      • eloquent.booted: App\Models\SubjectCat (59μs)
      • Illuminate\Database\Events\StatementPrepared (730μs)
      • Illuminate\Database\Events\QueryExecuted (9.96ms)
      • eloquent.retrieved: App\Models\SubjectCat (416μs)
      • Illuminate\Cache\Events\CacheHit (23.72ms)
      • Illuminate\Cache\Events\CacheMissed (10.34ms)
      • Illuminate\Database\Events\StatementPrepared (1.11ms)
      • Illuminate\Database\Events\QueryExecuted (14.31ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (106μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (23μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (13μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (11μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (126μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (14μs)
      • Illuminate\Database\Events\StatementPrepared (749μs)
      • Illuminate\Database\Events\QueryExecuted (863μs)
      • eloquent.retrieved: App\Models\Subject (99μs)
      • Illuminate\Cache\Events\KeyWritten (930μs)
      • Illuminate\Database\Events\StatementPrepared (2ms)
      • Illuminate\Database\Events\QueryExecuted (1.1ms)
      • Illuminate\Database\Events\StatementPrepared (2.46ms)
      • Illuminate\Database\Events\QueryExecuted (1.26ms)
      • Illuminate\Database\Events\StatementPrepared (635μs)
      • Illuminate\Database\Events\QueryExecuted (838μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (61μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (19μs)
      • Illuminate\Cache\Events\CacheHit (670μs)
      • creating: homework.show (331μs)
      • composing: homework.show (147μs)
      • creating: components.breadcrumbs (293μs)
      • composing: components.breadcrumbs (126μs)
      • Illuminate\Database\Events\StatementPrepared (7.68ms)
      • Illuminate\Database\Events\QueryExecuted (1.11ms)
      • eloquent.retrieved: App\Models\SubjectCat (111μs)
      • Illuminate\Cache\Events\CacheHit (4.18ms)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (308μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (172μs)
      • Illuminate\Cache\Events\CacheHit (266μs)
      • Illuminate\Cache\Events\CacheHit (246μs)
      • Illuminate\Cache\Events\CacheHit (177μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (159μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (145μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (656μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (299μs)
      • Illuminate\Cache\Events\CacheHit (317μs)
      • Illuminate\Cache\Events\CacheHit (400μs)
      • Illuminate\Cache\Events\CacheHit (345μs)
      • Illuminate\Cache\Events\CacheHit (232μs)
      • Illuminate\Cache\Events\CacheHit (265μs)
      • Illuminate\Cache\Events\CacheHit (239μs)
      • Illuminate\Cache\Events\CacheHit (406μs)
      • Illuminate\Cache\Events\CacheHit (201μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (234μs)
      • Illuminate\Cache\Events\CacheHit (220μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (219μs)
      • Illuminate\Cache\Events\CacheHit (182μs)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (169μs)
      • Illuminate\Cache\Events\CacheHit (223μs)
      • Illuminate\Cache\Events\CacheHit (338μs)
      • Illuminate\Cache\Events\CacheHit (225μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (366μs)
      • Illuminate\Cache\Events\CacheHit (219μs)
      • Illuminate\Cache\Events\CacheHit (175μs)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (172μs)
      • Illuminate\Cache\Events\CacheHit (337μs)
      • Illuminate\Cache\Events\CacheHit (397μs)
      • Illuminate\Cache\Events\CacheHit (196μs)
      • Illuminate\Cache\Events\CacheHit (319μs)
      • Illuminate\Cache\Events\CacheHit (225μs)
      • Illuminate\Cache\Events\CacheHit (282μs)
      • Illuminate\Cache\Events\CacheHit (321μs)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (584μs)
      • Illuminate\Cache\Events\CacheHit (2.81ms)
      • Illuminate\Cache\Events\CacheHit (453μs)
      • Illuminate\Cache\Events\CacheHit (214μs)
      • Illuminate\Cache\Events\CacheHit (1.6ms)
      • Illuminate\Cache\Events\CacheHit (169μs)
      • Illuminate\Cache\Events\CacheHit (397μs)
      • Illuminate\Cache\Events\CacheHit (398μs)
      • Illuminate\Cache\Events\CacheHit (226μs)
      • Illuminate\Cache\Events\CacheHit (177μs)
      • Illuminate\Cache\Events\CacheHit (233μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (211μs)
      • Illuminate\Cache\Events\CacheHit (182μs)
      • Illuminate\Cache\Events\CacheHit (230μs)
      • Illuminate\Cache\Events\CacheHit (137μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (204μs)
      • Illuminate\Cache\Events\CacheHit (152μs)
      • Illuminate\Cache\Events\CacheHit (298μs)
      • Illuminate\Cache\Events\CacheHit (220μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (212μs)
      • Illuminate\Cache\Events\CacheHit (181μs)
      • Illuminate\Cache\Events\CacheHit (200μs)
      • Illuminate\Cache\Events\CacheHit (237μs)
      • Illuminate\Cache\Events\CacheHit (235μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (226μs)
      • Illuminate\Cache\Events\CacheHit (305μs)
      • Illuminate\Cache\Events\CacheHit (256μs)
      • Illuminate\Cache\Events\CacheHit (200μs)
      • Illuminate\Cache\Events\CacheHit (316μs)
      • Illuminate\Cache\Events\CacheHit (455μs)
      • Illuminate\Cache\Events\CacheHit (456μs)
      • Illuminate\Cache\Events\CacheHit (224μs)
      • Illuminate\Cache\Events\CacheHit (242μs)
      • Illuminate\Cache\Events\CacheHit (177μs)
      • Illuminate\Cache\Events\CacheHit (219μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (8.45ms)
      • Illuminate\Cache\Events\CacheHit (458μs)
      • Illuminate\Cache\Events\CacheHit (276μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (195μs)
      • Illuminate\Cache\Events\CacheHit (139μs)
      • Illuminate\Cache\Events\CacheHit (181μs)
      • Illuminate\Cache\Events\CacheHit (139μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (142μs)
      • Illuminate\Cache\Events\CacheHit (214μs)
      • Illuminate\Cache\Events\CacheHit (128μs)
      • Illuminate\Cache\Events\CacheHit (213μs)
      • Illuminate\Cache\Events\CacheHit (168μs)
      • Illuminate\Cache\Events\CacheHit (658μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (258μs)
      • Illuminate\Cache\Events\CacheHit (335μs)
      • Illuminate\Cache\Events\CacheHit (156μs)
      • Illuminate\Cache\Events\CacheHit (259μs)
      • Illuminate\Cache\Events\CacheHit (174μs)
      • Illuminate\Cache\Events\CacheHit (1.12ms)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • Illuminate\Cache\Events\CacheHit (335μs)
      • Illuminate\Cache\Events\CacheHit (276μs)
      • Illuminate\Cache\Events\CacheHit (245μs)
      • Illuminate\Cache\Events\CacheHit (224μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (387μs)
      • Illuminate\Cache\Events\CacheHit (182μs)
      • Illuminate\Cache\Events\CacheHit (195μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (387μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (320μs)
      • Illuminate\Cache\Events\CacheHit (182μs)
      • Illuminate\Cache\Events\CacheHit (361μs)
      • Illuminate\Cache\Events\CacheHit (240μs)
      • Illuminate\Cache\Events\CacheHit (420μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (244μs)
      • Illuminate\Cache\Events\CacheHit (157μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (260μs)
      • Illuminate\Cache\Events\CacheHit (296μs)
      • Illuminate\Cache\Events\CacheHit (158μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (153μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (285μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (181μs)
      • Illuminate\Cache\Events\CacheHit (160μs)
      • Illuminate\Cache\Events\CacheHit (292μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (235μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (268μs)
      • Illuminate\Cache\Events\CacheHit (239μs)
      • Illuminate\Cache\Events\CacheHit (205μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (216μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (177μs)
      • Illuminate\Cache\Events\CacheHit (155μs)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (201μs)
      • Illuminate\Cache\Events\CacheHit (169μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (282μs)
      • Illuminate\Cache\Events\CacheHit (448μs)
      • Illuminate\Cache\Events\CacheHit (364μs)
      • Illuminate\Cache\Events\CacheHit (423μs)
      • Illuminate\Cache\Events\CacheHit (395μs)
      • Illuminate\Cache\Events\CacheHit (294μs)
      • Illuminate\Cache\Events\CacheHit (355μs)
      • Illuminate\Cache\Events\CacheHit (676μs)
      • Illuminate\Cache\Events\CacheHit (275μs)
      • Illuminate\Cache\Events\CacheHit (372μs)
      • Illuminate\Cache\Events\CacheHit (272μs)
      • Illuminate\Cache\Events\CacheHit (399μs)
      • Illuminate\Cache\Events\CacheHit (384μs)
      • Illuminate\Cache\Events\CacheHit (243μs)
      • Illuminate\Cache\Events\CacheHit (229μs)
      • Illuminate\Cache\Events\CacheHit (358μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (483μs)
      • Illuminate\Cache\Events\CacheHit (1.37ms)
      • Illuminate\Cache\Events\CacheHit (313μs)
      • Illuminate\Cache\Events\CacheHit (3.67ms)
      • Illuminate\Cache\Events\CacheHit (355μs)
      • Illuminate\Cache\Events\CacheHit (1.67ms)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (434μs)
      • Illuminate\Cache\Events\CacheHit (1.08ms)
      • Illuminate\Cache\Events\CacheHit (409μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • Illuminate\Cache\Events\CacheHit (3.42ms)
      • Illuminate\Cache\Events\CacheHit (386μs)
      • Illuminate\Cache\Events\CacheHit (217μs)
      • Illuminate\Cache\Events\CacheHit (257μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (367μs)
      • Illuminate\Cache\Events\CacheHit (207μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (352μs)
      • Illuminate\Cache\Events\CacheHit (213μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (1.29ms)
      • Illuminate\Cache\Events\CacheHit (168μs)
      • Illuminate\Cache\Events\CacheHit (274μs)
      • Illuminate\Cache\Events\CacheHit (244μs)
      • Illuminate\Cache\Events\CacheHit (215μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (414μs)
      • Illuminate\Cache\Events\CacheHit (11.85ms)
      • Illuminate\Cache\Events\CacheHit (275μs)
      • Illuminate\Cache\Events\CacheHit (169μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (158μs)
      • Illuminate\Cache\Events\CacheHit (287μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (221μs)
      • Illuminate\Cache\Events\CacheHit (267μs)
      • Illuminate\Cache\Events\CacheHit (317μs)
      • Illuminate\Cache\Events\CacheHit (395μs)
      • Illuminate\Cache\Events\CacheHit (198μs)
      • Illuminate\Cache\Events\CacheHit (413μs)
      • Illuminate\Cache\Events\CacheHit (181μs)
      • Illuminate\Cache\Events\CacheHit (289μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (234μs)
      • Illuminate\Cache\Events\CacheHit (250μs)
      • Illuminate\Cache\Events\CacheHit (460μs)
      • Illuminate\Cache\Events\CacheHit (231μs)
      • Illuminate\Cache\Events\CacheHit (291μs)
      • Illuminate\Cache\Events\CacheHit (277μs)
      • Illuminate\Cache\Events\CacheHit (350μs)
      • Illuminate\Cache\Events\CacheHit (339μs)
      • Illuminate\Cache\Events\CacheHit (224μs)
      • Illuminate\Cache\Events\CacheHit (250μs)
      • Illuminate\Cache\Events\CacheHit (209μs)
      • Illuminate\Cache\Events\CacheHit (246μs)
      • Illuminate\Cache\Events\CacheHit (210μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (174μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (252μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (172μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • Illuminate\Cache\Events\CacheHit (156μs)
      • Illuminate\Cache\Events\CacheHit (173μs)
      • Illuminate\Cache\Events\CacheHit (157μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (243μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (342μs)
      • Illuminate\Cache\Events\CacheHit (207μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (262μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (156μs)
      • Illuminate\Cache\Events\CacheHit (448μs)
      • Illuminate\Cache\Events\CacheHit (399μs)
      • Illuminate\Cache\Events\CacheHit (207μs)
      • Illuminate\Cache\Events\CacheHit (157μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (160μs)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (169μs)
      • Illuminate\Cache\Events\CacheHit (227μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (323μs)
      • Illuminate\Cache\Events\CacheHit (294μs)
      • Illuminate\Cache\Events\CacheHit (386μs)
      • Illuminate\Cache\Events\CacheHit (434μs)
      • Illuminate\Cache\Events\CacheHit (214μs)
      • Illuminate\Cache\Events\CacheHit (255μs)
      • Illuminate\Cache\Events\CacheHit (221μs)
      • Illuminate\Cache\Events\CacheHit (390μs)
      • Illuminate\Cache\Events\CacheHit (226μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (200μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (206μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • creating: site.layouts.app (647μs)
      • composing: site.layouts.app (26μs)
      • creating: components.canonical (453μs)
      • composing: components.canonical (118μs)
      • creating: components.open-graph (16.39ms)
      • composing: components.open-graph (130μs)
      • creating: site.headers.header (440μs)
      • composing: site.headers.header (101μs)
      • Illuminate\Cache\Events\CacheHit (2.05ms)
      • creating: components.footer (90μs)
      • composing: components.footer (111μs)
      • Illuminate\Cache\Events\CacheHit (977μs)
      • Illuminate\Cache\Events\CacheHit (297μs)
      • Illuminate\Cache\Events\CacheHit (250μs)
      • Illuminate\Cache\Events\CacheHit (270μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (195μs)
      • Illuminate\Cache\Events\CacheHit (301μs)
      • Illuminate\Cache\Events\CacheHit (432μs)
      • Illuminate\Cache\Events\CacheHit (347μs)
      • Illuminate\Cache\Events\CacheHit (203μs)
      • Illuminate\Cache\Events\CacheHit (277μs)
      • Illuminate\Cache\Events\CacheHit (182μs)
      • Illuminate\Cache\Events\CacheHit (325μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • creating: components.forms.contact-us (243μs)
      • composing: components.forms.contact-us (3.13ms)
      • creating: components.forms.get-started (263μs)
      • composing: components.forms.get-started (310μs)
      • creating: components.forms.free-tool-download (151μs)
      • composing: components.forms.free-tool-download (90μs)
      • creating: components.forms.claim-free-worksheet (118μs)
      • composing: components.forms.claim-free-worksheet (106μs)
      • creating: components.forms.tutor-subscription-waitlist (119μs)
      • composing: components.forms.tutor-subscription-waitlist (78μs)
      • creating: components.forms.tutor-subscription-join (118μs)
      • composing: components.forms.tutor-subscription-join (72μs)
      • creating: components.forms.tutor-support (116μs)
      • composing: components.forms.tutor-support (75μs)
      • 321 x Illuminate\Cache\Events\CacheHit (17.31%)
        144ms
        10 x Illuminate\Database\Events\QueryExecuted (3.96%)
        32.94ms
        10 x Illuminate\Database\Events\StatementPrepared (2.62%)
        21.82ms
        1 x creating: components.open-graph (1.97%)
        16.39ms
        1 x Illuminate\Cache\Events\CacheMissed (1.24%)
        10.34ms
        1 x composing: components.forms.contact-us (0.38%)
        3.13ms
        1 x Illuminate\Foundation\Events\LocaleUpdated (0.3%)
        2.51ms
        1 x Illuminate\Cache\Events\KeyWritten (0.11%)
        930μs
        1 x eloquent.booting: App\Models\SubjectCat (0.1%)
        868μs
        1 x Illuminate\Database\Events\ConnectionEstablished (0.1%)
        837μs
        1 x Illuminate\Routing\Events\Routing (0.09%)
        764μs
        1 x creating: site.layouts.app (0.08%)
        647μs
        2 x eloquent.retrieved: App\Models\SubjectCat (0.06%)
        527μs
        1 x creating: components.canonical (0.05%)
        453μs
        1 x creating: site.headers.header (0.05%)
        440μs
        7 x eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (0.05%)
        416μs
        17 x eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.05%)
        395μs
        1 x Illuminate\Routing\Events\RouteMatched (0.04%)
        351μs
        1 x creating: homework.show (0.04%)
        331μs
        1 x composing: components.forms.get-started (0.04%)
        310μs
        2 x eloquent.retrieved: App\Models\Subject (0.04%)
        304μs
        1 x creating: components.breadcrumbs (0.04%)
        293μs
        1 x creating: components.forms.get-started (0.03%)
        263μs
        1 x creating: components.forms.contact-us (0.03%)
        243μs
        1 x eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibrary (0.03%)
        231μs
        1 x creating: components.forms.free-tool-download (0.02%)
        151μs
        1 x composing: homework.show (0.02%)
        147μs
        1 x eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibrary (0.02%)
        143μs
        1 x eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.02%)
        132μs
        1 x composing: components.open-graph (0.02%)
        130μs
        1 x composing: components.breadcrumbs (0.02%)
        126μs
        1 x creating: components.forms.tutor-subscription-waitlist (0.01%)
        119μs
        1 x composing: components.canonical (0.01%)
        118μs
        1 x creating: components.forms.claim-free-worksheet (0.01%)
        118μs
        1 x creating: components.forms.tutor-subscription-join (0.01%)
        118μs
        1 x creating: components.forms.tutor-support (0.01%)
        116μs
        1 x composing: components.footer (0.01%)
        111μs
        1 x composing: components.forms.claim-free-worksheet (0.01%)
        106μs
        1 x composing: site.headers.header (0.01%)
        101μs
        1 x creating: components.footer (0.01%)
        90μs
        1 x composing: components.forms.free-tool-download (0.01%)
        90μs
        1 x composing: components.forms.tutor-subscription-waitlist (0.01%)
        78μs
        1 x composing: components.forms.tutor-support (0.01%)
        75μs
        1 x eloquent.booting: App\Models\Subject (0.01%)
        73μs
        1 x composing: components.forms.tutor-subscription-join (0.01%)
        72μs
        1 x eloquent.booted: App\Models\Subject (0.01%)
        59μs
        1 x eloquent.booted: App\Models\SubjectCat (0.01%)
        59μs
        1 x eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.01%)
        58μs
        1 x composing: site.layouts.app (0%)
        26μs
      14 templates were rendered
      • 1x homework.showshow.blade.phpblade
      • 1x components.breadcrumbsbreadcrumbs.blade.phpblade
      • 1x site.layouts.appapp.blade.phpblade
      • 1x components.canonicalcanonical.blade.phpblade
      • 1x components.open-graphopen-graph.blade.phpblade
      • 1x site.headers.headerheader.blade.phpblade
      • 1x components.footerfooter.blade.phpblade
      • 1x components.forms.contact-uscontact-us.blade.phpblade
      • 1x components.forms.get-startedget-started.blade.phpblade
      • 1x components.forms.free-tool-downloadfree-tool-download.blade.phpblade
      • 1x components.forms.claim-free-worksheetclaim-free-worksheet.blade.phpblade
      • 1x components.forms.tutor-subscription-waitlisttutor-subscription-waitlist.blade.phpblade
      • 1x components.forms.tutor-subscription-jointutor-subscription-join.blade.phpblade
      • 1x components.forms.tutor-supporttutor-support.blade.phpblade
      uri
      GET college-homework-library/{category}/{subject}/{id}
      middleware
      web, utm.parameters
      controller
      App\Http\Controllers\HomeworkLibraryController@show
      namespace
      where
      as
      homework.show
      file
      app/Http/Controllers/HomeworkLibraryController.php:79-176
      10 statements were executed, 4 of which were duplicates, 6 unique. Show only duplicated43.09ms
      • Connection Establishedtwenty4_siteHomeworkLibraryController.php#91
        Backtrace
        • 13. app/Http/Controllers/HomeworkLibraryController.php:91
        • 14. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 15. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 16. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 17. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `solutionslibrary` where `status` = 'published' and `price` > 0 and `solutionslibrary`.`id` = '54176' limit 1
        4.74mstwenty4_siteHomeworkLibraryController.php#97
        Bindings
        • 0: published
        • 1: 0
        • 2: 54176
        Backtrace
        • 16. app/Http/Controllers/HomeworkLibraryController.php:97
        • 17. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 18. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 19. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 20. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `subjects` where `subjects`.`id` in (299)
        940μstwenty4_siteHomeworkLibraryController.php#97
        Backtrace
        • 21. app/Http/Controllers/HomeworkLibraryController.php:97
        • 22. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 23. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 24. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 25. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` in (54176)
        830μstwenty4_siteHomeworkLibraryController.php#97
        Backtrace
        • 21. app/Http/Controllers/HomeworkLibraryController.php:97
        • 22. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 23. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 24. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 25. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `subject_cats` where `subject_cats`.`id` = 1 limit 1
        9.91mstwenty4_siteHomeworkLibrary.php#201
        Bindings
        • 0: 1
        Backtrace
        • 20. app/Models/HomeworkLibrary/HomeworkLibrary.php:201
        • 26. app/Http/Controllers/HomeworkLibraryController.php:105
        • 27. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 28. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 29. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
      • select * from `solutionslibrary` where `id` <> 54176 and `subject` = 299 and `status` = 'published' and `price` > 0 order by RAND() limit 6
        14.27mstwenty4_siteHomeworkLibraryRepository.php#30
        Bindings
        • 0: 54176
        • 1: 299
        • 2: published
        • 3: 0
        Backtrace
        • 14. app/Repositories/HomeworkLibraryRepository.php:30
        • 15. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 16. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 18. app/Repositories/HomeworkLibraryRepository.php:39
        • 19. app/Http/Controllers/HomeworkLibraryController.php:139
      • select * from `subjects` where `subjects`.`id` in (299)
        930μstwenty4_siteHomeworkLibraryRepository.php#30
        Backtrace
        • 19. app/Repositories/HomeworkLibraryRepository.php:30
        • 20. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 21. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 23. app/Repositories/HomeworkLibraryRepository.php:39
        • 24. app/Http/Controllers/HomeworkLibraryController.php:139
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` = 54176 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'question' order by `order` asc, `id` asc
        870μstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 54176
        • 1: question
        Backtrace
        • 15. app/Models/HomeworkLibrary/HomeworkLibrary.php:260
        • 16. app/Transformers/HomeworkLibrary/HomeworkLibraryTransformer.php:58
        • 19. vendor/league/fractal/src/TransformerAbstract.php:128
        • 20. vendor/league/fractal/src/TransformerAbstract.php:107
        • 21. vendor/league/fractal/src/Scope.php:383
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` = 54176 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'teaser' order by `order` asc, `id` asc
        2.49mstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 54176
        • 1: teaser
        Backtrace
        • 15. app/Models/HomeworkLibrary/HomeworkLibrary.php:260
        • 16. app/Transformers/HomeworkLibrary/HomeworkLibraryTransformer.php:69
        • 19. vendor/league/fractal/src/TransformerAbstract.php:128
        • 20. vendor/league/fractal/src/TransformerAbstract.php:107
        • 21. vendor/league/fractal/src/Scope.php:383
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` = 54176 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'solution' order by `order` asc, `id` asc
        730μstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 54176
        • 1: solution
        Backtrace
        • 15. app/Models/HomeworkLibrary/HomeworkLibrary.php:260
        • 16. app/Transformers/HomeworkLibrary/HomeworkLibraryTransformer.php:80
        • 19. vendor/league/fractal/src/TransformerAbstract.php:128
        • 20. vendor/league/fractal/src/TransformerAbstract.php:107
        • 21. vendor/league/fractal/src/Scope.php:383
      • select * from `subject_cats` where `subject_cats`.`id` = 1 limit 1
        7.38mstwenty4_siteHomeworkLibrary.php#201
        Bindings
        • 0: 1
        Backtrace
        • 20. app/Models/HomeworkLibrary/HomeworkLibrary.php:201
        • 32. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 33. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
        • 34. vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
        • 35. vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70
      App\Models\HomeworkLibrary\HomeworkLibraryFile
      17HomeworkLibraryFile.php
      App\Models\HomeworkLibrary\HomeworkLibrary
      7HomeworkLibrary.php
      App\Models\Subject
      2Subject.php
      App\Models\SubjectCat
      2SubjectCat.php
          _token
          jIYe2FKQGbMPmf5BFz9bXfinn4zKQIrdphcTdZgT
          utm_source
          direct
          redirectUrl
          /college-homework-library/Mathematics/Statistics-R-Programming/54176
          _previous
          array:1 [ "url" => "https://staging.dev.24houranswers.com/college-homework-library/Mathematics/Sta...
          _flash
          array:2 [ "old" => [] "new" => [] ]
          PHPDEBUGBAR_STACK_DATA
          []
          path_info
          /college-homework-library/Mathematics/Statistics-R-Programming/54176
          status_code
          200
          
          status_text
          OK
          format
          html
          content_type
          text/html; charset=UTF-8
          request_query
          []
          
          request_request
          []
          
          request_headers
          0 of 0
          array:21 [ "priority" => array:1 [ 0 => "u=0, i" ] "accept-encoding" => array:1 [ 0 => "gzip, deflate, br, zstd" ] "sec-fetch-dest" => array:1 [ 0 => "document" ] "sec-fetch-user" => array:1 [ 0 => "?1" ] "sec-fetch-mode" => array:1 [ 0 => "navigate" ] "sec-fetch-site" => array:1 [ 0 => "none" ] "accept" => array:1 [ 0 => "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7" ] "user-agent" => array:1 [ 0 => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" ] "upgrade-insecure-requests" => array:1 [ 0 => "1" ] "sec-ch-ua-platform" => array:1 [ 0 => ""Windows"" ] "sec-ch-ua-mobile" => array:1 [ 0 => "?0" ] "sec-ch-ua" => array:1 [ 0 => ""HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"" ] "cache-control" => array:1 [ 0 => "no-cache" ] "pragma" => array:1 [ 0 => "no-cache" ] "x-amzn-trace-id" => array:1 [ 0 => "Root=1-67fd1028-4f61d1135310baed63d7e561" ] "host" => array:1 [ 0 => "staging.dev.24houranswers.com" ] "x-forwarded-port" => array:1 [ 0 => "443" ] "x-forwarded-proto" => array:1 [ 0 => "https" ] "x-forwarded-for" => array:1 [ 0 => "18.222.240.84" ] "content-length" => array:1 [ 0 => "" ] "content-type" => array:1 [ 0 => "" ] ]
          request_cookies
          []
          
          response_headers
          0 of 0
          array:5 [ "content-type" => array:1 [ 0 => "text/html; charset=UTF-8" ] "cache-control" => array:1 [ 0 => "no-cache, private" ] "date" => array:1 [ 0 => "Mon, 14 Apr 2025 13:39:53 GMT" ] "set-cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6Ijdtclh6NTNURmQ0UWs3M0Q1bUxOUVE9PSIsInZhbHVlIjoiNWFqenZrTE1xeWM0VVU0ME5UY3EzUzdNOXc0a3dZYURwZ0pEUDVJYitGZDN1UnN2L3lWUk9xKy9LZ0V6TWlUS0ZtbzI2MzhCdU1KUFA5SElNcW5HT0J5Smc3UGxQSDMrYmgxeERSUjZha3NjNjB1aEttbSs3VW80cDZRdjFZMVoiLCJtYWMiOiJmM2U4NTM5MGZjZDQ3ZTk5N2UwNjUxZWVmNWNkNjQ5MGNjMzMyM2U1ZmM1OTE5ZjZmMzU4ZGFkNzk0ZmNmNTM5IiwidGFnIjoiIn0%3D; expires=Mon, 14 Apr 2025 15:39:53 GMT; Max-Age=7200; path=/; domain=.24houranswers.com; samesite=laxXSRF-TOKEN=eyJpdiI6Ijdtclh6NTNURmQ0UWs3M0Q1bUxOUVE9PSIsInZhbHVlIjoiNWFqenZrTE1xeWM0VVU0ME5UY3EzUzdNOXc0a3dZYURwZ0pEUDVJYitGZDN1UnN2L3lWUk9xKy9LZ0V6TWlUS0ZtbzI2M" 1 => "24houranswers_session=eyJpdiI6IlQvSHU2a0hyWWN3V0ZINHRSU0I4dXc9PSIsInZhbHVlIjoieWpjV3E3UUtPRUE0a0xZNWhpVkIyWmJuOWZFK0tWSVpsUnJIdHdoQ3FlRE5wRmdWN2NNOGY4V1lSY1Z3b1YwNGFtR1ZZV3Q2WHV6NWo3ZkROR09hdnRaRVRsUEw0a0lGSFpwRC8wQ2pXbDR5VFl6TzRmRFhWOHV2VFVqVTh2ZDMiLCJtYWMiOiI0ODY0MWNiY2Y2MGExM2NkYmRiNTA0MzY3NjYzMTVlODZiZGI2MDRlMWYzYzk3YzI2MzU2ZTQ0MDYzNTRiZGY3IiwidGFnIjoiIn0%3D; expires=Mon, 14 Apr 2025 15:39:53 GMT; Max-Age=7200; path=/; domain=.24houranswers.com; httponly; samesite=lax24houranswers_session=eyJpdiI6IlQvSHU2a0hyWWN3V0ZINHRSU0I4dXc9PSIsInZhbHVlIjoieWpjV3E3UUtPRUE0a0xZNWhpVkIyWmJuOWZFK0tWSVpsUnJIdHdoQ3FlRE5wRmdWN2NNOGY4V1lSY1Z3b1" ] "Set-Cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6Ijdtclh6NTNURmQ0UWs3M0Q1bUxOUVE9PSIsInZhbHVlIjoiNWFqenZrTE1xeWM0VVU0ME5UY3EzUzdNOXc0a3dZYURwZ0pEUDVJYitGZDN1UnN2L3lWUk9xKy9LZ0V6TWlUS0ZtbzI2MzhCdU1KUFA5SElNcW5HT0J5Smc3UGxQSDMrYmgxeERSUjZha3NjNjB1aEttbSs3VW80cDZRdjFZMVoiLCJtYWMiOiJmM2U4NTM5MGZjZDQ3ZTk5N2UwNjUxZWVmNWNkNjQ5MGNjMzMyM2U1ZmM1OTE5ZjZmMzU4ZGFkNzk0ZmNmNTM5IiwidGFnIjoiIn0%3D; expires=Mon, 14-Apr-2025 15:39:53 GMT; domain=.24houranswers.com; path=/XSRF-TOKEN=eyJpdiI6Ijdtclh6NTNURmQ0UWs3M0Q1bUxOUVE9PSIsInZhbHVlIjoiNWFqenZrTE1xeWM0VVU0ME5UY3EzUzdNOXc0a3dZYURwZ0pEUDVJYitGZDN1UnN2L3lWUk9xKy9LZ0V6TWlUS0ZtbzI2M" 1 => "24houranswers_session=eyJpdiI6IlQvSHU2a0hyWWN3V0ZINHRSU0I4dXc9PSIsInZhbHVlIjoieWpjV3E3UUtPRUE0a0xZNWhpVkIyWmJuOWZFK0tWSVpsUnJIdHdoQ3FlRE5wRmdWN2NNOGY4V1lSY1Z3b1YwNGFtR1ZZV3Q2WHV6NWo3ZkROR09hdnRaRVRsUEw0a0lGSFpwRC8wQ2pXbDR5VFl6TzRmRFhWOHV2VFVqVTh2ZDMiLCJtYWMiOiI0ODY0MWNiY2Y2MGExM2NkYmRiNTA0MzY3NjYzMTVlODZiZGI2MDRlMWYzYzk3YzI2MzU2ZTQ0MDYzNTRiZGY3IiwidGFnIjoiIn0%3D; expires=Mon, 14-Apr-2025 15:39:53 GMT; domain=.24houranswers.com; path=/; httponly24houranswers_session=eyJpdiI6IlQvSHU2a0hyWWN3V0ZINHRSU0I4dXc9PSIsInZhbHVlIjoieWpjV3E3UUtPRUE0a0xZNWhpVkIyWmJuOWZFK0tWSVpsUnJIdHdoQ3FlRE5wRmdWN2NNOGY4V1lSY1Z3b1" ] ]
          session_attributes
          0 of 0
          array:6 [ "_token" => "jIYe2FKQGbMPmf5BFz9bXfinn4zKQIrdphcTdZgT" "utm_source" => "direct" "redirectUrl" => "/college-homework-library/Mathematics/Statistics-R-Programming/54176" "_previous" => array:1 [ "url" => "https://staging.dev.24houranswers.com/college-homework-library/Mathematics/Statistics-R-Programming/54176" ] "_flash" => array:2 [ "old" => [] "new" => [] ] "PHPDEBUGBAR_STACK_DATA" => [] ]