alebaran

Results 6 issues of 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). ![MxAnalyzer issue](https://user-images.githubusercontent.com/55485247/65134141-b8165200-d9fb-11e9-82e2-be41207fcc0f.jpg) When I click...

bug

```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],...

feature request

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?

feature request

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),...

enhancement

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',...

question

`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...