BookmarkSubscribeRSS Feed
Jahanzaib
Quartz | Level 8

I want to apply regression analysis on the attached data on country basis.

I have applied following regression model but it gives overall results but not on the basis of country.

can anyone please help me to analyze on the basis of country.

proc reg data=em3;

model TD=TA Tang MV_BV ROA;

run;

3 REPLIES 3
LinusH
Tourmaline | Level 20

BY?

Data never sleeps
Jahanzaib
Quartz | Level 8

on country basis

Reeza
Super User

As indicated correctly by @linush BY group processing.

Proc sort data=em3;

by Country;

run;

proc reg data=em3;

By country;

model TD=TA Tang MV_BV ROA;

run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 2051 views
  • 0 likes
  • 3 in conversation