#LinearRegression
The new Effects Plot in OriginPro’s Design of Experiments (DOE) and General Linear Regression (GLR) apps allows users to easily identify significant terms in their model
www.originlab.com/fileExchange... #OriginPro #GLR #GeneralLinearRegression #LinearRegression #EffectPlot #DOE #DesignofExperiments
October 29, 2025 at 7:27 PM
January 31, 2025 at 2:34 AM
An Overfitting dilemma: XGBoost Default Hyperparameters vs GenericBooster + LinearRegression Default Hyperparameters

https://thierrymoudiki.github.io/blog/2025/06/14/python/xgboost-default-overfitting

#Techtonique #DataScience #Python #rstats #MachineLearning
July 9, 2025 at 8:20 PM
Improve your understanding of linear regression models and learn about extending the use of linear methods to situations with nonlinear relationships and interactions among variables in this online workshop. For more details: myumi.ch/kZgRm

#SumProg25 #ICPSR #LinearRegression #NonlinearModels
May 27, 2025 at 6:00 PM
Prepare for SAS/STAT certification, focusing on variance analysis, regression, and model performance. | CoListy
#freeonlinelearning #colisty #courselist #sas/stat #statisticalanalysis #linearregression #logisticregression

colisty.netlify.app/courses/sas-...
Master SAS/STAT for Complex Statistical Analysis
Prepare for SAS/STAT certification, focusing on variance analysis, regression, and model performance. | CoListy
colisty.netlify.app
January 16, 2025 at 4:21 PM
Stepwise regression options are now available under OriginPro's Design of Experiments (DOE) and General Linear Regression (GLR) apps.
www.originlab.com/fileExchange...
#GLR #GeneralLinearRegression #LinearRegression #StepwiseRegression #DOE #DesignofExperiments #OriginPro #OriginPro2025b #originlab
October 23, 2025 at 3:38 AM
An Overfitting dilemma: XGBoost Default Hyperparameters vs GenericBooster + LinearRegression Default Hyperparameters

https://thierrymoudiki.github.io/blog/2025/06/14/python/xgboost-default-overfitting

#Techtonique #DataScience #Python #rstats #MachineLearning
October 19, 2025 at 9:58 PM
The Coding Train dude is precious. This is the Math teacher I wish I had for every grade I was taught math. www.youtube.com/watch?v=szXb... #math #mathematics #linearregression
3.2: Linear Regression with Ordinary Least Squares Part 1 - Intelligence and Learning
YouTube video by The Coding Train
www.youtube.com
November 24, 2024 at 1:50 PM
Test your analytics knowledge! Which of these is a real-world example of #LinearRegression?

1. Campaign performance
2. Sales & revenue
3. Housing price predictions
4. Financial forecasting
5. Medical diagnoses

Trick question! It's all of them.

More:
🔗 calibrate-analytics.com/insights/202...
September 11, 2025 at 5:05 PM
let's hear it for #linearregression everyone
February 27, 2025 at 12:36 AM
An Overfitting dilemma: XGBoost Default Hyperparameters vs GenericBooster + LinearRegression Default Hyperparameters

thierrymoudiki.github.io/blog/2025/06...

#python #machinelearning
June 16, 2025 at 12:54 PM
[#phimscience] 📢New work by @MathildeChen & coll#ClimateData ⛈️#MachineLearning #LinearRegression models 📉 💻 to predict #soybean yields

Funded by @CLAND_saclay with @MiaParisSaclay @AgroParisTech @CIRAD

▶️More detail lnkd.in/e5PRxSQM via @IOPenvironment
April 25, 2024 at 10:59 PM
March 26, 2024 at 3:50 PM
なーにがfrom sklearn.linear_model import LinearRegressionだ。ライブラリ覚えきれへんて
March 23, 2025 at 4:06 PM
1/ First up: Predictive AI 📊
These models help predict numbers, trends & patterns.

Example: Want to train your own regression model and predict how coffee affects your sleep? regression-js has got you covered!
#linearregression #regression #mlmodels
https://buff.ly/3VfPwPF
December 1, 2024 at 9:30 AM
9 FLAWS of ‘Summary’ Function You DIDN’T Know About and How to Fix Them

Short video for details: youtu.be/BxfNyDzULmg

#rstats #statistics #dataanalysis #stats #datascience #r4ds #linearregression
December 3, 2024 at 3:15 PM
🛠️ Model trained! Used LinearRegression as our baseline for the NYC taxi dataset.
The focus now shifts from training to understanding performance over time.
Monitoring is where real MLOps begins 🚀
#MLOpsZoomcamp #DataTalksClub
June 23, 2025 at 9:34 PM
Stephen Mansour is presenting Taming Regression using APL at #Dyalog24. From algebra to non-linear regression, APL’s power in handling these mathematical models is impressive. #APL #LinearRegression #DataScience #Math #Tech
September 17, 2024 at 8:25 AM
I love #R. But don't understand how it is simpler than #Python.
import pandas as pd
from sklearn.linear_model import LinearRegression

df = pd.read_csv('mtcars.csv')
X = df[['wt']]
y = df['mpg']
model = LinearRegression().fit(X, y)
print(f"Slope: {model.coef_[0]}, Intercept: {model.intercept_}")
I'm amazed how simple #rstats stuff can completely amaze others

I was teaching python users R today and I was shocked that they were impressed the most with lm() and that you can do linear regression in 1-2 lines of code

We couldn't get beyond that in the training. Such an interesting experience.
March 1, 2025 at 10:38 PM