diff options
-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')) ``` |