You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Drop the temporary Stata program temp_pystata_kernel_program_name before its creation. This fixes the program temp_pystata_kernel_program_name already defined r(110); error.
New configuration option missing controls what should be displayed in the output of the *%browse magic for a missing value. Default is '.', following Stata. To defer to pandas' format for NA, specify 'pandas'.
The SelVar class now uses Stata's tempvar mechanism to create the temporary variable it needs.
Magics are commands that only work in pystata-kernel and are not part of Stata's syntax. Magics normally start with %, but this will cause errors when the notebook is exported and run as a Stata script. As an alternative, you can prefix the magic name with *%, which will simply be treated by Stata as a single-line comment.
Added a new option echo. If set to True in the configuration file, the kernel will echo the command while running a cell with only a single command. This setting has no effect on cells containing multiple commands. Default is False.