\
  The most prestigious law school admissions discussion board in the world.
BackRefresh Options Favorite

There is no reason to get a Masters in any science or math related discipline

It’s all about generalist degrees now. AI will replace...
Jewish in substance but not in form
  03/21/26
AI is garbage that only does what you tell it. If you don't ...
I'm literally Will Hunting btw
  03/21/26
Right and I am that man
Jewish in substance but not in form
  03/21/26
So do you want a random effects model here or are you conten...
I'm literally Will Hunting btw
  03/21/26
Grok what do these words mean
Jewish in substance but not in form
  03/21/26
...
I'm literally Will Hunting btw
  03/21/26
The question your colleague is asking is very standard in pa...
I'm literally Will Hunting btw
  03/21/26
Everyone world laugh at you if you sent this btw
I'm literally Will Hunting btw
  03/21/26
at least it knows about heteroskedasticity. "Economics&...
a lifetime spent arguing with autistic men online
  03/21/26
Grok gimme a total slop model and don't worry about colinear...
I'm literally Will Hunting btw
  03/21/26
Economics is so fucking cooked. It has basially what amounts...
a lifetime spent arguing with autistic men online
  03/21/26
Correct is just what's justified relative to the audience an...
I'm literally Will Hunting btw
  03/21/26
When I was a grad student my advisor tried to have sex with ...
Professor Jiang
  03/21/26
Modern women are so psychologically incapable of processing ...
Jewish in substance but not in form
  03/21/26
this was true long before AI came along. Ljl @ your narrow l...
cucumbers
  03/21/26
When I have my MBA I’m going to be shitting all over y...
Jewish in substance but not in form
  03/21/26
You're going to be making on call schedules for nurses in a ...
I'm literally Will Hunting btw
  03/21/26
That’s even worse than writing Jira tickets wtf
Jewish in substance but not in form
  03/21/26
not by much
a lifetime spent arguing with autistic men online
  03/21/26
At least he'll get to pick if he wants to work with Shaniqua...
I'm literally Will Hunting btw
  03/21/26
Please keep such discussions on the grad board. This thread ...
Nude Karlstack
  03/21/26


Poast new message in this thread



Reply Favorite

Date: March 21st, 2026 8:16 PM
Author: Jewish in substance but not in form

It’s all about generalist degrees now. AI will replace you. But I have a liberal arts degree & am knowledgeable in the tenets of business administration

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760277)



Reply Favorite

Date: March 21st, 2026 8:18 PM
Author: I'm literally Will Hunting btw

AI is garbage that only does what you tell it. If you don't know what to tell it you will look retarded.

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760280)



Reply Favorite

Date: March 21st, 2026 8:19 PM
Author: Jewish in substance but not in form

Right and I am that man

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760287)



Reply Favorite

Date: March 21st, 2026 8:21 PM
Author: I'm literally Will Hunting btw

So do you want a random effects model here or are you content with fixed effects? Also how do you want to handle the correlation matrix and residuals.

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760292)



Reply Favorite

Date: March 21st, 2026 8:24 PM
Author: Jewish in substance but not in form

Grok what do these words mean

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760302)



Reply Favorite

Date: March 21st, 2026 8:24 PM
Author: I'm literally Will Hunting btw



(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760303)



Reply Favorite

Date: March 21st, 2026 8:27 PM
Author: I'm literally Will Hunting btw

The question your colleague is asking is very standard in panel/longitudinal data modeling (whether in econometrics, statistics, or machine learning contexts with repeated observations). It boils down to two key decisions for your predictive model:Fixed effects (FE) vs Random effects (RE) — this is about how to handle unobserved unit-specific (e.g., individual, firm, country, store, user) heterogeneity.

How to model the correlation structure (especially serial correlation over time within units) and the residuals (error assumptions, heteroskedasticity, clustering, etc.).

Here's a practical way to think about and respond — tailored to a predictive goal (out-of-sample forecasting, generalization, etc.) rather than pure causal identification.Fixed vs Random Effects — Quick Decision FrameworkUse fixed effects (FE) if:You strongly suspect (or want to be conservative about) correlation between unobserved unit-specific effects and your predictors (the classic endogeneity concern).

You're mainly interested in within-unit changes over time (time-varying predictors drive most of the signal).

You have many units (large N) but relatively short time series per unit (small T) — FE is still consistent even if T is modest.

Time-invariant predictors (gender, country continent, industry type, etc.) are not of interest — they get differenced out anyway.

You're being very cautious about bias in coefficients (common in many applied domains).

Use random effects (RE) if:You believe (or the Hausman test suggests) that the unobserved unit effects are uncorrelated with the predictors.

You want to include and estimate effects of time-invariant variables.

You want more statistical efficiency (smaller standard errors, better predictions in some cases) — RE uses both within- and between-unit variation.

You have a smaller number of units but longer time series, or you're explicitly interested in between-unit differences.

Your ultimate goal is prediction (especially out-of-sample on new units) — RE often generalizes better because it partially pools information across units.

Quick test in practice: Run both + Hausman test (in R: phtest() from plm package; in Stata: hausman; in Python: statsmodels or linearmodels). If Hausman p < 0.05–0.10 → prefer FE (reject RE assumptions).

If p > 0.10 → RE is usually fine (and more efficient).

For pure prediction (your case seems predictive): many people lean toward RE or even mixed models if the goal is minimizing out-of-sample error, because FE can overfit to the specific units in the training data and discard between-unit information.If your model is for causal interpretation, FE is safer in most observational settings.Handling the Correlation Matrix and ResidualsPanel data almost always has:Serial correlation (AR(1) or higher) within units — observations closer in time are more correlated.

Heteroskedasticity — variance often differs across units or over time.

Clustering — standard errors need to account for within-unit dependence.

Common practical choices (pick based on diagnostics):Default / simple:RE or FE with cluster-robust standard errors at the unit level (vce(cluster unit_id) in Stata; cov_type='cluster' in statsmodels/linearmodels; vcovHC(..., type="HC1") + cluster in plm/sandwich in R).

This handles both heteroskedasticity and arbitrary within-unit correlation without modeling the exact structure.

If you want to explicitly model the correlation matrix (common when T is large or you care about efficiency / accurate SEs):AR(1) within units — very common and often sufficient (e.g., Cochrane-Orcutt style or gls in R/nlme, or correlation = corAR1() in lme4/nlme).

Unstructured — fully general correlation matrix per unit (good if T small, but can be overparameterized).

Toeplitz / banded — if correlation decays with time lag.

Heteroskedastic + correlated — e.g., correlation = corAR1(form=~time|unit) + weights=varIdent().

Residual diagnostics to guide you:Plot residuals vs time (per unit) → look for patterns.

ACF/PACF plots of residuals per unit → check for AR(1), ARMA, etc.

Breusch-Pagan / White test → heteroskedasticity.

Durbin-Watson or Arellano-Bond test for serial correlation.

Recommended starting point for most predictive panel models:Try random effects with AR(1) correlation within units + robust/heteroskedastic-consistent SEs.

Compare predictive performance (e.g., cross-validated RMSE/MAE) against plain FE with clustered SEs.

If the Hausman test rejects RE, fall back to FE + clustered SEs (safe but potentially less efficient for prediction).

Suggested Reply You Could Send"Hey, good questions — since this is mainly for prediction, I'm leaning toward random effects (more efficient, uses between-unit info, better for generalizing to new units) unless the Hausman test strongly rejects it, in which case we'd go fixed effects.For correlation/residuals, I suggest starting with:Cluster-robust SEs at the [unit] level (handles arbitrary within-unit correlation + heteroskedasticity).

Or, if T is decent, explicitly model AR(1) serial correlation within units for better efficiency.

We can run Hausman + some residual diagnostics (ACF plots, etc.) to confirm. What do you think — any strong prior for FE here, or any time-invariant predictors we really care about?"This keeps the conversation going productively while showing you’ve thought it through. If you share more context (what kind of data/units, software, goal details), I can refine this further!



(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760315)



Reply Favorite

Date: March 21st, 2026 8:28 PM
Author: I'm literally Will Hunting btw

Everyone world laugh at you if you sent this btw

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760322)



Reply Favorite

Date: March 21st, 2026 8:32 PM
Author: a lifetime spent arguing with autistic men online

at least it knows about heteroskedasticity. "Economics" is complete and utter flame btw. lmao at the IDENTIFICATION PROBLEM

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760328)



Reply Favorite

Date: March 21st, 2026 8:36 PM
Author: I'm literally Will Hunting btw

Grok gimme a total slop model and don't worry about colinearity or endogeneity, were just going to make numbers up at the end anyway

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760338)



Reply Favorite

Date: March 21st, 2026 8:40 PM
Author: a lifetime spent arguing with autistic men online

Economics is so fucking cooked. It has basially what amounts to not even a traditional underdetermination problem, but a kind of motivated underdetermination where auxiliary hypotheses are chosen to preserve policy decisions. The mathematics is just an excuse to pretend the faggot "model" is "correct"

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760356)



Reply Favorite

Date: March 21st, 2026 8:49 PM
Author: I'm literally Will Hunting btw

Correct is just what's justified relative to the audience and the rage of truth candidates. Take your speculations back to the theology department

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760375)



Reply Favorite

Date: March 21st, 2026 8:27 PM
Author: Professor Jiang

When I was a grad student my advisor tried to have sex with me and I turned her down because she was really unattractive

Then she pretended to have cancer so she didn't have to work but one of her friends ratted her out and it was extremely awkward and they didn't even punish her for it because she was a woman

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760314)



Reply Favorite

Date: March 21st, 2026 8:39 PM
Author: Jewish in substance but not in form

Modern women are so psychologically incapable of processing rejection that it gives them fake cancer. Wow

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760349)



Reply Favorite

Date: March 21st, 2026 8:51 PM
Author: cucumbers

this was true long before AI came along. Ljl @ your narrow liberal arts mind not knowing this.

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760380)



Reply Favorite

Date: March 21st, 2026 9:00 PM
Author: Jewish in substance but not in form

When I have my MBA I’m going to be shitting all over you. Put that in your pipe and smoke it

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760414)



Reply Favorite

Date: March 21st, 2026 9:03 PM
Author: I'm literally Will Hunting btw

You're going to be making on call schedules for nurses in a PE funded urgent care

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760426)



Reply Favorite

Date: March 21st, 2026 9:06 PM
Author: Jewish in substance but not in form

That’s even worse than writing Jira tickets wtf

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760440)



Reply Favorite

Date: March 21st, 2026 9:08 PM
Author: a lifetime spent arguing with autistic men online

not by much

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760451)



Reply Favorite

Date: March 21st, 2026 9:09 PM
Author: I'm literally Will Hunting btw

At least he'll get to pick if he wants to work with Shaniquas or Sandeeps

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760453)



Reply Favorite

Date: March 21st, 2026 9:12 PM
Author: Nude Karlstack (🧐)

Please keep such discussions on the grad board. This thread is Locked.

(http://www.autoadmit.com/thread.php?thread_id=5848394&forum_id=2#49760460)