Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • making points on the stphplot smaller msize(vtiny)

    Hello,

    I'm trying to assess PH with univariate analysis - using log log Kaplan meier survival curves - stphplot-

    However it's difficult to subjectively assess parallelism and assess PH due to the size of the points . I tried to resize them as one would do with a scatter plot using the code below


    Code:
    stphplot, by(gender) nonegative nolntime msize(vtiny)
    
    //Stata error: option msize(not allowed)
    Is it possible / are there alternatives?

  • #2
    Code:
    webuse leukemia, clear
    stset weeks, failure(relapse) noshow
    stphplot, by(treatment1) plot1opts(msize(vlarge))
    Res.:

    Click image for larger version

Name:	Graph.png
Views:	1
Size:	24.0 KB
ID:	1733453

    Comment


    • #3
      thanks i wonder why this isn't in the help file.

      Comment


      • #4
        It is, otherwise how else would I know about it? Look at

        Code:
        help stphplot
        where you will find


        Plot
        plot#opts(stphplot_plot_options) affect rendition of the #th connected line and #th plotted points

        Comment

        Working...
        X