I am running a fixed effects model with a continuous variable (say parental wealth) on another continuous variable (children's wealth). I have a few control variables as well.
I want to plot the relationship between X and Y, over "Time". Is it possible to create a year-wise plot from the coefficients of the below equation? One way to do it would be manually collecting Time-related effects, and plotting them.
summary(plm(Y~X+a+b+as.factor(Time), data=df, index=c("ID","Time"),model = "within",effect = "individual"))
I want to examine how the relationship changes over time.

