Linxiao Francis Cong
Linxiao Francis Cong
Thank you. Now I plan to use LaTeX first and then use python to parse LaTeX to convert it to the markdown format. There is actually a project converting [LaTeX...
> There is now basic support for exporting solutions in Pandoc Markdown, PDF, and HTML formats in the dev version on GitHub. See `--solutions` and `--only-solutions`. I may refine this...
Yeah. I agree, but I guess it would be better to be more explicit in the documentation since "fitting the NS model" could mean either directly fitting the functional form...
Not really. According to the code, the reason is an inconsistent use of degrees of freedom in the calculation of covariance (as in the numerator) and variance (as in the...
Yeah. I mean the current one. If I install using `pip install git+https://github.com/astanin/python-tabulate.git@master`, then `pip list` shows ``` tabulate 0.9.1.dev29+g95ae5eb ```
> > Would a friendly fork be helpful? > > judging from project not being active enough to close [#329](https://github.com/astanin/python-tabulate/issues/329) and last release being in 2022 - it seems that...
I see. Thanks for the clarification. I guess a bit more documentation for this in the docstring of `condition_number` would be helpful to clarify.
After some experiments, I'm able to achieve the functionality using the following JS code: ```js require(['notebook/js/codecell'], function(codecell) { codecell.CodeCell.options_default.highlight_modes['magic_text/x-q'] = {'reg':[/^%%q/]} ; Jupyter.notebook.events.one('kernel_ready.Kernel', function(){ Jupyter.notebook.get_cells().map(function(cell){ if (cell.cell_type == 'code'){ cell.auto_highlight();...