Announcement

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

  • coefplot - two-layer font sizes on ylabel

    Hi,
    I followed the instruction from 'help conjoint' and generated a graph. As you can see the ylabel is squeezed and i want to resize the sub-labels: 0 and 1 with (tiny) under W, 0 and 1 with (tiny) under EMBEDDED, and so on.
    Would you please teach me where I can insert that option? I apologize the following messy syntax.
    Chul

    Code:
    coefplot  matrix(overall_results[,1]), bylabel(Overall) || matrix(results_F[,1]), bylabel(F) || matrix(results_M[,1]), bylabel(M) ||, ///
    ci((5 6)) keep(*:) xline(0, lpattern(-) lcolor(black)) coeflabels ( _0= "0"  _1= "1"  _0= "0"  _1= "1"  _0= "0"  _1= "1"  _0= "0"  _1= "1" ///
     _0= "0"  _1= "1"  _0= "0"  _1= "1"  _0= "0"  _1= "1"  _0= "0"  _1= "1"  _0= "0"  _1= "1"  _2_FR= "FR"  _3_SO= "SO"  _4_JR= "JR"  _5_SR= "SR" ///
     _0_0_1_0= "0.0-1.0"  _1_0_2_0= "1.0-2.0"  _2_0_3_0= "2.0-3.0"  _3_0_4_0= "3.0-4.0"  _1__Nonresident_alien= "Nonresident alien"  ///
     _2__Hispanic_Latino= "Hispanic/Latino"  _3__American_Indian_or_Alaskan_N= "American Indian or Alaskan Native"  _4__Asian= "Asian"  ///
     _5__Black_or_African_American= "Black or African American"  _7__White= "White"  _8__Two_or_more_races= "Two or more races"  ///
     _9__Unknown= "Unknown") eqlabels( "{bf:W}" "{bf:EMBEDDED}" "{bf:INQ}" "{bf:T1CT}" "{bf:T1FY}" "{bf:T1MC}" "{bf:T1QR}" "{bf:T1TF}" ///
     "{bf:T1WC}" "{bf:Class}" "{bf:GPA}" "{bf:Race}", asheadings labsize(small)) byopts(graphregion(col(white)) cols(3)) ///
     subtitle(, fcolor(gs15)) scale(0.7) xtitle({bf:Estimated AMCEs}, size(small)) xlabel(,labsize(small)) msize(small)
    Click image for larger version

Name:	test.jpg
Views:	1
Size:	37.9 KB
ID:	1653423

  • #2
    Code:
    coefplot  matrix(overall_results[,1]), bylabel(Overall) || matrix(results_F[,1]), bylabel(F) || matrix(results_M[,1]), bylabel(M) ||, ///
    ci((5 6)) keep(*:) xline(0, lpattern(-) lcolor(black)) coeflabels ( _0= "0"  _1= "1"  _0= "0"  _1= "1"  _0= "0"  _1= "1"  _0= "0"  _1= "1" ///
     _0= "0"  _1= "1"  _0= "0"  _1= "1"  _0= "0"  _1= "1"  _0= "0"  _1= "1"  _0= "0"  _1= "1"  _2_FR= "FR"  _3_SO= "SO"  _4_JR= "JR"  _5_SR= "SR" ///
     _0_0_1_0= "0.0-1.0"  _1_0_2_0= "1.0-2.0"  _2_0_3_0= "2.0-3.0"  _3_0_4_0= "3.0-4.0"  _1__Nonresident_alien= "Nonresident alien"  ///
     _2__Hispanic_Latino= "Hispanic/Latino"  _3__American_Indian_or_Alaskan_N= "American Indian or Alaskan Native"  _4__Asian= "Asian"  ///
     _5__Black_or_African_American= "Black or African American"  _7__White= "White"  _8__Two_or_more_races= "Two or more races"  ///
     _9__Unknown= "Unknown", labsize(tiny)) eqlabels( "{bf:W}" "{bf:EMBEDDED}" "{bf:INQ}" "{bf:T1CT}" "{bf:T1FY}" "{bf:T1MC}" "{bf:T1QR}" "{bf:T1TF}" ///
     "{bf:T1WC}" "{bf:Class}" "{bf:GPA}" "{bf:Race}", asheadings labsize(small)) byopts(graphregion(col(white)) cols(3)) ///
     subtitle(, fcolor(gs15)) scale(0.7) xtitle({bf:Estimated AMCEs}, size(small)) xlabel(,labsize(small)) msize(small)

    Comment


    • #3
      DearØyvind,
      thank you for your help. It resized labels as I wished.
      regards,
      Chul

      Comment

      Working...
      X