I hope someone can help me as I have spent countless hours trying to recreate the graph output in journal article. Both DV: FS_Scale and IV:runoutworry are categorical predictors (Likert Scale from 1-7) and I want to show the trend (+/-) . For e.g. how many people on the 7 pt runoutworry(x-axis) is also showing up also as 7 pt on y-axis FS_Scale? The output I want to mimic is able to show 1 -7 for both x-axis and y-axis but when I coded it, it came out showing frequencies on y-axis instead. I think I am doing something wrong or is it impossible? Thank you so much.
Here is my code
drop if runoutworry==. drop if FS_Scale==. collapse (count) runoutworry, by(FS_Scale) browse twoway (line runoutworry FS_Scale, sort lcolor(black) lwidth(medium) lpattern(longdash)) (scatter runoutworry FS_Scale, msize(medium) msymbol(circle) mlabel(runoutworry) mlabsize(medium)), /// ytitle(count of run out worry) ylabel(0(200)1000, angle(horizontal)) xlabel(1(1)7) legend(off) plotregion(margin(large)) xtitle(FS Scale)
Related Posts with Two-way line graphs
OLS with robust standard errorsHello, I want to perform a multiple linear regression in my model, OLS with robust standard errors.…
Panel Data: How can I keep individuals with observations in specific consecutive years?Dear Statalists, I have a panel dataset with a time range (T) from -2 to 4. I would like to keep onl…
Omiited due to collinearityHello guys, I regressed my model through multiple linear regression. However, Stata omitted two ind…
Facing problem in generating IDDear Statalist, I am facing kind of strange problem in my STATA. For my research I am using Nationa…
justified to do subgroup analysis versus include as covariate/interaction?I successfully ran the below model and created a nice a chart showing trends in gender over time for…
Subscribe to:
Post Comments (Atom)
0 Response to Two-way line graphs
Post a Comment