Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Gracie
Helper II
Helper II

How to put x as dates for R linear regression

I am writing R script to do linear regression. My dateset is date and price. Date is from Date table and Price is from Sales table. These two tables have no relationship setup. How can I put date as x axis ? And how to cancel #Remove duplicated rows because I don't want to remove duplicated rows?

 

Here is my code:

#Create dataframe
#dataset <- data.frame(Date,Price)

#Remove duplicated rows
#dataset <- unique(dataset)

strDates <- dataset[,1] x <- as.Date(strDates, "%m/%d/%Y") y <- as.numeric(dataset[,2]) plot(y~x, xlim = c(as.POSIXct("1/1/2010", format = "%m/%d/%Y"),as.POSIXct("1/1/2010", format = "%m/%d/%Y"))) lm.ab<-lm(y ~ x) abline(lm.ab) summary(lm.ab)
3 REPLIES 3
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @Gracie,

Please create a index column in Date and Sales table separately.  Then merge the two table to one according to index field.

Then you load the Index, Date and Price to create a dataset.

Change your corresponding part of code to the following code. 

strDates <- dataset[,3]
y <- as.numeric(dataset[,3])

Then run your R code and change if it works fine.

Best Regards,
Angelia

Hi @v-huizhn-msft

 

It doesn't work. I guess your point is to add the index to avoid removing duplicated rows. But the x-axis still can't show as dates.

 

 

Hi @Gracie,

>>But the x-axis still can't show as dates.

Could you please share a screenshot for further analysis?

Thanks,
Angelia

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors