Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7045161
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:29:46+00:00 2026-05-28T02:29:46+00:00

I would like to create a 5-by-5 grid of tabulate twoway frequency count tables,

  • 0

I would like to create a 5-by-5 grid of tabulate twoway frequency count tables, like the following table.

enter image description here

Generating each sub-table is easy with nested foreach loops, but the long list output is more difficult to interpret than a 5-by-5 grid (and has redundant entries — it provides both halves of the symmetric matrix).

Is it possible to make a table like this in Stata? To be clear, I can figure out the LaTeX later, I am just interested in getting clear and concise console output.

Thanks! Here is some code that does the basics using the auto data, but generates a list instead of a matrix. xtile is from the egenmore package

sysuse auto, clear
global vars price mpg headroom trunk weight
foreach x of global vars {
    egen d_`x' = xtile(`x'), nquantiles(2)
}

* can make diagonal entries
tabulate d_price d_price

* can make off-diagonal entries
tabulate d_price d_mpg

* crude solution that generates list output with redundant entries
foreach x of global vars {
    foreach y of global vars {
        tabulate d_`x' d_`y'
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T02:29:46+00:00Added an answer on May 28, 2026 at 2:29 am

    I’ve added some matrix operations into your loop.

    tempname col all tabout
    foreach x of global vars {
        foreach y of global vars {
            qui tabulate d_`x' d_`y', matcell(`tabout')
            mat colnames `tabout' = `x' `x'
            mat rownames `tabout' = `y' `y'
            mat `col' = (nullmat(`col') \ `tabout' )
        }
        mat `all'= (nullmat(`all') , `col')
        mat drop `col'
    }
    mat list `all'
    

    It is a little similar to my program named meantab, at http://code.google.com/p/kk-adofiles/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to create multiple progress bars inside a grid or table through
I'm using 960 grid system to create a layout prototype. I would like to
I want to create a really easy to use 2D Grid. Each cell in
I would like to create a grid on my page made up of tiny,
I would like to create a grid view in my iPhone app similar to
I would like to create a grid line approach in my app and allow
Given the following xaml code, I would like to create this xaml code the
I am using Wicket and would like to create a grid of radio buttons
I would like create my own collection that has all the attributes of python
I would like create a web service in ASP.Net 2.0 that will supports JSON.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.