About 371,000 results
Open links in new tab
  1. Relationship between CLT for estimator of sample and number of ...

    2 What is the relationship between the Central Limit Theorem as applied to the expected value of an estimator of a parent sample and the number of possible combinations of a subsample used to …

  2. What is the scalings_ attribute in Linear Discriminant Analysis?

    Dec 5, 2023 · The documentation says the scalings are the linear combinations of the predictors, so I assumed this was the $\Sigma^ {-1} \mu_k$ term. But, after fitting a LDA classifier …

  3. python - Why doesn't ARIMA work on my time series data ... - Cross ...

    Jun 5, 2019 · I use auto_arima from python library pmdarima.arima to predict a time series. However, the model seems not work on my data because the prediction results of both training and test data …

  4. python - Is feature importance from Random Forest models additive ...

    I have trained a Random Forest model in python. The results are decent, and I am fairly happy with it. The input data is fairly big: ~3,000,000 observations and ~2,000 features. For various reasons, I do …

  5. forecasting - How to adjust hyper-parameter values of SARIMAX as we ...

    May 7, 2024 · To understand and get the ideal hyper-parameters for the model, I ran the SARIMAX over a parameter space to get the best combination of hyper-parameters using Python's itertool module's …

  6. python - What type of multi-label method does sklearn's random …

    Sep 9, 2019 · The base estimator of RandomForestClassifier is DecisionTreeClassifier, which indeed builds a single generalized model capable of processing output correlations. To build a tree, it uses a …

  7. distributions - How to generate random values based on mean, …

    Jul 28, 2023 · Purpose: I'm trying to generate dummy / fake / synthetic data based on production data. I've tried finding several solutions, but most of them seem to use SciPy. Reason for avoiding SciPy: I …

  8. Gamma CDF in Python [duplicate] - Cross Validated

    Jun 8, 2017 · OK so after trying many combinations based on the wikipedia article Cliff posted, this is the parameterisation in Python that matches R: stats.gamma.cdf(1.5,2,scale=3) - …

  9. Is there a standard way to calculate marginal effects?

    You would fix both x1 and x2 at several value combinations from a table that represent important situations, vary t across all days in a year, and plot the curve of marginal effects over time by …

  10. Different output for R lm () and python statsmodel OLS for linear ...

    OLS in statsmodels has currently no option to drop singular columns. statsmodels OLS is using the Moore-Penrose generalized inverse, pinv, to solve the linear least squares problem. This means that …