I'm using the latest version stripplot (ran ssc install stripplot today) with both the over and by options. I'm using Stata/SE 15.1. I found that stripplot adds a note at the bottom right: "Graphs by varname" where varname is the by variable.

I have tried adding note("") and subtitle("") but neither of these things gets rid of that note. Here is the code snippet as it currently stands:
Code:
stripplot L2, subtitle("") note("") over(emot4cat) by(situs) bar(level(95)) cumulate scheme(s1color) ytitle("")
This can probably be replicated using any variables in any dataset as long as the 'by' option is used. I'm looking for a way to get rid of that note. Thanks.