Announcement

Collapse
No announcement yet.
This is a sticky topic.
X
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • graph combine to work with meta forest without having to move everything to the user-written metan suite.

    Comment


    • #344 yes, good point.

      Comment


      • Something I keep finding as a problem with other colleagues.
        Would it be possible to allow Stata to "read" ster files automatically?
        I know one could just "est use" it. But interestingly enough, many people do not know how to.
        If one could double click it so it runs a simple "ereturn display" would be very useful, and perhaps not hard to implement

        Comment


        • It would be great to have the possibility to show row percentages in dtable instead of column percentages.

          Comment


          • on #349, Andrew Musau teached how to show row percentages,

            https://www.statalist.org/forums/for...-to-each-other


            Code:
            sysuse auto, clear
            collect clear
            table (foreign), nformat(%3.2f ) stat(percent) stat( mean weight) nototals name(c1)
            table (rep78), nformat(%3.2f ) stat(percent) stat( mean weight) nototals name(c2)
            collect combine all= c1 c2
            collect levelsof across
            collect layout (`s(levels)') (var#result)
            Code:
            . collect layout (`s(levels)') (var#result)
            (dimension _hide not found)
            
            Collection: all
                  Rows: _hide foreign rep78
               Columns: var#result
               Table 1: 9 x 2
            
            ---------------------------------------------
                               |  Weight (lbs.)   Percent
                               |           Mean          
            -------------------+-------------------------
            Car origin         |                        
              Domestic         |        3317.12     70.27
              Foreign          |        2315.91     29.73
            Repair record 1978 |                        
              1                |        3100.00      2.90
              2                |        3353.75     11.59
              3                |        3299.00     43.48
              4                |        2870.00     26.09
              5                |        2322.73     15.94
            ---------------------------------------------
            plus Bjarte Aagnes, alternative:

            Code:
               
            collect : table (foreign), nformat(%3.2f ) stat(percent) stat( mean weight) nototals
            collect : table (rep78), nformat(%3.2f ) stat(percent) stat( mean weight) nototals append
            collect layout (foreign rep78)(result)
            
                  Rows: foreign rep78
               Columns: result
               Table 1: 9 x 2
            
            ---------------------------------------
                               |  Percent      Mean
            -------------------+-------------------
            Car origin         |                  
              Domestic         |    70.27   3317.12
              Foreign          |    29.73   2315.91
            Repair record 1978 |                  
              1                |     2.90   3100.00
              2                |    11.59   3353.75
              3                |    43.48   3299.00
              4                |    26.09   2870.00
              5                |    15.94   2322.73
            ---------------------------------------

            Comment


            • 'Highlight Occurrences' or 'Word Highlighting' would be nice. Like in VS Code, which has it per default: when i select a word (e.g. a macro name or whatever) all occurences of the same word are also highlighted in the same code file in the editor, which is incredible usefull while editing code.
              Example:
              Click image for larger version

Name:	Screenshot 2024-09-18 112114.png
Views:	1
Size:	4.7 KB
ID:	1763988

              Comment


              • Re #350: It is true that this can be done in the ways shown. But the -collect- command is very complicated and learning to use it effectively requires a great deal of investment of time and effort. -dtable- is a convenience command that is intended to produce a commonly needed table with a single command. It would be even more convenient if it had an option to show row percentages.

                Comment

                Working...
                X