JHM Darbyshire
JHM Darbyshire
OK, I looked more closely. The Solver returns nan becuase the `index_base` on the calibrating ZCIS does not forecast. It is in the past (1st of month) so returns zero....
A `Curve` object does not know the conventions of a swap. It does not plot a swap rate. It plots a curve rate. Normally this is used for tenors such...
Closing after #444 added to docs.
See also https://conda.discourse.group/t/recipes-templates-for-python-project-with-rust-extensions/755/2
Thanks @NickAltmann I will take a look at this and see if I can piece something together from it.
closed as miraculously solved by above!
On hold because on second thought this might not actually be best. It is somewhat dependent on the use case.
I think this might already be update in the `dev` branch, but will double check. New release is proving to be quite large so is taking longer than normal but...
This should fix your problem: ```python df = pd.DataFrame({"a": [1, 2]}) s = df.style s.relabel_index([r"$\bar{{y}}$"], axis="columns") print(s.to_latex()) \begin{tabular}{lr} & $\bar{y}$ \\ 0 & 1 \\ 1 & 2 \\ \end{tabular}...
Just to add to this from #36065 the testing mod equals also behave inconsistently: ``` import pandas as pd import pandas._testing as tm i1 = pd.date_range("2008-01-01", periods=1000, freq="12H") i2 =...