mm3509

Results 37 comments of mm3509

Hi! Well done with the project. Your presentation has a "Box2.py with bedbolts". I could not find such a file in the repo. So can I produce files for a...

I did comment out that line in `boxes/generators/closedbox.py` and in `boxes/generators/universalbox.py`, but see no bedbolts in the output. I call ``` scripts/boxes [closedbox | universalbox] --thickness=5 --output=test.svg --format=svg --x=254 --y=300...

Mmm, I have these lines in `boxes/generators/closedbox.py`: ``` d2 = edges.Bolts(2) d3 = edges.Bolts(5) #d2 = d3 = None ``` And I see no bed bolts, as in this image...

I think I have the wrong setup. If I rename `closedbox.py` to `closedbox2.py` or add a false assertion in the class: ``` class ClosedBox(Boxes): """Fully closed box""" assert False, "Does...

I renamed the class as well: ``` class ClosedBox2(Boxes): """Fully closed box""" assert False, "Does the script hit this line?" ``` and I get the same result. I only have...

I was unable to do `import boxes.generators.closedbox` but able to do `import boxes`. I removed the installation and `print(boxes.__file__)` was pointing to the Trash. I cleared the trash and installed...

I'll make another suggestion: to verify that the installed module `boxes` has a `__file__` not `None`. I tried multiple times and uninstalled the module as in [this thread](https://stackoverflow.com/questions/1550226/python-setup-py-uninstall). Uninstalling removed...

I was able to adapt the `closedbox` generator with counter bed bolts, as I mentioned in #73. Thanks a lot for your help with this debugging!

@YaohuiZeng I am also interested in having the package take sparse matrices as an input, as currently my matrix is too big to fit in disk space.

I want to estimate a vector auto-regression (VAR) on 10 years (120 months) of US county-level data. I have 120 time periods * 3,118 mainland counties = 374,160 data points....