#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
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
Test your skills with this 20-question quiz on Statistics using Python MCQs. Master key concepts like pandas describe(), data normalization, LinearRegression, and Pearson Correlation. Perfect for data science interviews and beginners.
#Pythonprogrammingquiz #pythonquiz #pythonmcqs #pythonpandasquiz
Statistics using Python MCQs 16
Test your skills with this 20-question quiz on Statistics using Python MCQs. Master key concepts like pandas describe(), data normalization, LinearRegression, and Pearson Correlation. Perfect for data science interviews and beginners for the preparation of Python Programming. Topics include handling missing values, get_dummies(), groupby(), correlation, and regression. Let us start with the Statistics using Python MCQs now.
rfaqs.com
October 11, 2025 at 4:51 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
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
August 24, 2025 at 9:05 PM
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
August 5, 2025 at 10:52 PM
🧪🛟 CPH Focus: Linear regression essentials! Dive into slope, intercept, and core assumptions to power your way to acing the CPH exam:
buff.ly/tE8ktpg
#EpiSky #MedSky #Biostatistics #LinearRegression #Regression #TestPrep
CPH Focus: Evidence-Based Approaches to Public Health : Regression Analysis : Linear Regression
ALT: Interior view of a sunlit artist’s studio: a bearded man sits on a wooden chair at left, holding a palette and brushes as he works on a landscape canvas propped near a bed draped with rumpled white linens, warm light streaming across the room.
www.broadlyepi.com
July 24, 2025 at 9:01 PM
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
🛠️ 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
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
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
Just dropped our latest AI/ML Huddle!
🧠 Deep dive into Linear Regression.
🌐 Distributed data management for edge computing
🚀 Guide to deploying LLM projects via HuggingFace Spaces
Check it out : www.huddleandgo.work/aiml
#AIML #MachineLearning #LinearRegression #EdgeAI #LLM #HuggingFace #eCommerceAI
www.huddleandgo.work
May 17, 2025 at 4:35 PM
HN discussion on linear regression & gradient descent covered assumptions, limitations, alternatives, and the ML vs. Stats debate. Users shared resources & debated practical uses and pitfalls. #LinearRegression 1/6
May 9, 2025 at 3:00 AM
It’s Friday! 🔍Discover the #EquationsForLife from @andre-rendeiro.com's Group: using #LinearRegression & deep learning, they created “tissue clocks” that predict biological age from images & blood!🧬

👉Read more: tinyurl.com/CeMMRR2024-R...

#CeMMResearchReport2024
May 2, 2025 at 6:48 AM
PS: 📅 #HELPLINE. Want to discuss your article? Need help structuring your story? Make a date with the editors of Low Code for Data Science via Calendly → calendly.com/low-code-blo...

#datascience #dataanalytics #dataviz #linearregression #KNIME #lowcode #nocode #opensource #visualprogramming
April 30, 2025 at 6:45 AM
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
April 11, 2025 at 4:00 PM
なーにがfrom sklearn.linear_model import LinearRegressionだ。ライブラリ覚えきれへんて
March 23, 2025 at 4:06 PM
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