I want to make a dot plot with showing mean and SE in the plot in Srara. But, I am not able to make the SEs in graph. Anyone has any example code to do that? I have a continuous value in the y-axis and 6 variables type in my x-axis.
I have only used the code below:
dotplot val1 val2 val3 val4 val5 val6, mean
A reproducible data can be see as following:
clear
set obs 100
set seed 12345
forval j = 1/6 {
gen val`j' = rnormal(`j' * 10, `j' * 2)
}
rename val1 baseline1
rename val2 vrs
rename val3 sgbd
rename val4 baseline2
rename val5 fdst
rename val6 sgvf
but I expect to get the SE in graph and also mean.
Here is some technique -- in the absence of a reproducible example from you.
EDIT
Making use of the reproducible example, here is some sample code.