alebaran
alebaran
I've just tried to follow all the instructions to use MxAnalyzer. It shows the value of the variable , but no dependencies (see the screenshot).  When I click...
```python from modelx import * import pandas as pd m,s = new_model(),new_space('s') series = pd.Series([1, 2], pd.Index([3, 4], name='a')) s.new_cells_from_pandas(series, 'x') s.x[3] = 10 write_model(m, 'm') m2 = read_model('m') print(m.s.x[3],...
I need to create a cell with no arguments and some data inside. Is there a way to do it so that "write_model" will capture it?
How to make dynamic space cross-referencing each other? I've tried the following and it doesn't work: ``` from modelx import * m = new_model() def try_param_x(a): return {'refs': {'y': y_base(a),...
New_space_from_pandas doesn't allow non string space_params: ```py import pandas as pd import numpy as np import modelx as mx def make_sample2(columns, idx_names): """Series with MultiIndex""" arrays = [['bar', 'bar', 'baz',...
`import_module` breaks if I have: 1) A module "a.py", in which I have` import b` in the beginning of the file 2) A module "b.py", in which I have` import...