stata table 명령어에서 frequency와 percent의 소수 이하 자리수를 다르게 표기하는 방법 stata table 명령어에서 frequency는 소숫점 없이, percent는 소숫점 2자리까지 표기하는 방법 1. Frequency(빈도)를 소수점 없이 표시하기: `nformat(%12.0fc)` 옵션2. Percent(백분율)를 소수점 2자리까지 표시하기: `pformat(%5.2f)` 옵션table 변수명, contents(freq) nformat(%12.0fc) contents(percent) pformat(%5.2f) STATA 2025.01.06