Sébastien Celles
Sébastien Celles
Thanks @wheeheee and @mbaz @wheeheee I'd do ```julia p = PolynomialRatio([1:3;], [2:10;]) ldf1 = LiveDigitalFilter{Float64}(p) fit!(ldf1, Float64[10, 23, -1]) fit!(ldf1, Float64[2, 3, 4]) println(value(ldf1)) # or println(ldf1) ``` What is...
A workaround is to do: ```python for col in df.columns: df[col] = df[col] + pd.to_datetime('1970/01/01') ```  but it will be nice if...
Timedelta values could be labeled on the axes the same manner than `Timestamp` (which are correctly labeled) ... but without date. On my side I only need millisecond resolution but...
Maybe this Pandas issue about formatting `Timedelta` to string https://github.com/pandas-dev/pandas/issues/26897 should also be considered. Below 24h, `Timedelta` could probably be written using `n days hh:mm:ss.xxx` Be also aware that the...
Yes headless CLI command will be fine. Maybe fpdf2 https://py-pdf.github.io/fpdf2/ Or Reportlab https://docs.reportlab.com/ Or for low level pdf generation pydyf https://www.courtbouillon.org/pydyf/ See https://akpolatcem.medium.com/creating-various-pdf-files-via-python-eba91a40df9d
This SO question can help https://stackoverflow.com/questions/27649600/python-html-to-pdf-with-full-support-for-css3-and-html5 about rendering html/css to pdf. This post also https://apitemplate.io/blog/how-to-convert-html-to-pdf-using-python/
Hi @mscolnick , Sorry for not answering quickly I was quite busy. export to html seems to be broken in my install. ``` > marimo export html am_modulation.py -o am_modulation.html...
I saw #2387 is disabling PDF export while editing. I think we should have 2 kind of PDF exports. - PDF export while simply viewing which could simply provide viewable...
Similar problem also occurs when trying to convert Jupyter notebook to Marimo notebook using Cygwin. ``` scell@DESKTOP /cygdrive/c/Users/scell/Downloads $ /cygdrive/c/Users/scell/anaconda3/Scripts/marimo.exe convert 1_correction_ascenseur.ipynb > 1_correction_ascenseur.py scell@DESKTOP /cygdrive/c/Users/scell/Downloads $ /cygdrive/c/Users/scell/anaconda3/Scripts/marimo.exe edit 1_correction_ascenseur.py...
`| out-file foo.txt -encoding utf8` converts to UTF-8 with BOM marimo is able to edit converted file but comments are not correctly accentuated I have `DonnÚes` instead of `Données` So...