Announcement

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

  • Graph error codes

    Hi,

    I have been using STATA SE 17.0 for a while, but recently after opening it the graph commands are no longer working.

    For instance, when inputing the following:

    tw scatter pdsh0 pdsh1 perc, connect(l l) lpattern(solid dash) msymbol(sh i) msize(small small) ylabel(`span1'(`int')`span2') ymtick(`span1'(`tick')`span2') l1title("Y", size(medsmall)) ytitle("") xtitle("X)", size(medsmall)) subtitle("`subtit'", size(medsmall)) title("Z `y1'-`y2'", size(medium)) saving(../gph/demp-pct-`y1'-`y2'-rewt`rewtyr'-czall-color.gph,replace)

    Which evokes the following:

    alignstroke.new,: class member function not found
    (error occurred while loading linestyle.class)
    linestyle.new: class member function not found
    (error occurred while loading tickstyle.class)
    tickstyle.new: class member function not found
    (error occurred while loading ticksetstyle.class)
    ticksetstyle.new: class member function not found
    (error occurred while loading axisstyle.class)
    axisstyle.new: class member function not found
    (error occurred while loading axis.class)
    axis.new: class member function not found
    (error occurred while loading twowaygraph_g.class)
    twowaygraph_g.new (scatter pdsh0 pdsh1 perc, connect(l l) lpattern(solid dash) msymbol(sh i) msize(small small)), ylabel(-.2(.1).4) ymtick(-.2(.05).4)l1title("Y", size(medsmall)) ytitle("") xtitle("X)",size(medsmall)) subtitle("", size(medsmall)) title("Z",size(medium)): class member function not found

    twoway is not a valid graph subcommand
    r(198);

    Could you please advise me on how I can rectify this?

    Many thanks

  • #2

    Code:
    xtitle("X)"
    should be

    Code:
    xtitle("X")
    or so I guess. Stata is just confused.

    Comment

    Working...
    X