diff options
author | RunasSudo <runassudo@yingtongli.me> | 2018-12-04 18:14:00 +1100 |
---|---|---|
committer | RunasSudo <runassudo@yingtongli.me> | 2018-12-04 18:14:00 +1100 |
commit | 3d47174f671931b36e4086a4312e453a9faa667d (patch) | |
tree | 0d4a36c06358a2f17b110d5ec85d4604bdfd1f5b | |
parent | 017f4af56adbc1e71281ac0ba4735a7639050c91 (diff) |
-rw-r--r-- | README.md | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -45,6 +45,12 @@ Note: Setting options to invalid values results in undefined behaviour. You can silence the output of a cell by beginning a code block with the line `%silent`. +You can hide certain tables from the output of a cell by beginning a code block with `%hide_table` followed on the same line by a comma-separated list of table captions. For example: + +``` +%hide_table Summary.,Ranks +``` + ### Running Python code You can also run Python code directly by beginning a code block with the line `%py`. `print()` will be automatically overridden to send output to Jupyter: @@ -62,7 +68,7 @@ CROSSTABS /TABLES=VarX BY VarY /STATISTICS=CORR. We can then run: -``` +```py %py print(self.out_tables['CROSSTABS']['Symmetric measures.'].get_cell('Approx. T', 'Spearman Correlation')) ``` |