Dear Forum members,
This is an example, based on data from the Stata Manual (concerning Latent Class, actually Latent Profile), but the actual data gives similar results:
After the commands above, we get this graph: 
The problem is: I wish to exclude the message "Effects with Respect to". Also, I wish to edit the main title.
If we use the graph editor, the main title "Average Marginal Effects" is classified as "title" and the message "Effects with Respect to" is classified as "bottom 1".
However, if I try to edit the main title, I only get the "by" titles instead:

With regards to the message "Effect with respect to", neither "note" nor "caption" would do the trick.
The same situation happens if I recast the graph:

This is my last difficulty with regards to the analysis, since I cannot get different colors for the bars when I use - asyvar - option:
I know I can do it by using the point-and-click graphic operations, but I wonder whether there is a more elegant solution.
Thank you very much in advance.
Edited to correct title: LPA (latent profile analysis) instead of "LCP".
This is an example, based on data from the Stata Manual (concerning Latent Class, actually Latent Profile), but the actual data gives similar results:
Code:
use http://www.stata-press.com/data/r15/gsem_lca2 gsem (glucose insulin sspg <- _cons), lclass(C 2) estat lcmean, post margins, dydx(*) noesample predict(outcome(1)) predict(outcome(2)) marginsplot, by(_outcome)
The problem is: I wish to exclude the message "Effects with Respect to". Also, I wish to edit the main title.
If we use the graph editor, the main title "Average Marginal Effects" is classified as "title" and the message "Effects with Respect to" is classified as "bottom 1".
However, if I try to edit the main title, I only get the "by" titles instead:
Code:
marginsplot, by(_outcome) title("This is not the main title")
With regards to the message "Effect with respect to", neither "note" nor "caption" would do the trick.
The same situation happens if I recast the graph:
Code:
marginsplot, by(_outcome) title("This is not the main title") recast(bar)
This is my last difficulty with regards to the analysis, since I cannot get different colors for the bars when I use - asyvar - option:
Code:
marginsplot, by(_outcome) title("This is not the main title") recast(bar) asyvars Variables that uniquely identify margins: _deriv _outcome option asyvars not allowed r(198);
Thank you very much in advance.
Edited to correct title: LPA (latent profile analysis) instead of "LCP".
Comment