Jonas Schulze

Results 69 comments of Jonas Schulze

Same here. I'm running Python 3.8.5 in a Slurm environment (1 node, 16 cores) with a [venv](https://docs.python.org/3.8/library/venv.html) created from the following `requirements.txt`: ``` appdirs==1.4.4 arch==4.19 beautifulsoup4==4.9.3 bs4==0.0.1 certifi==2020.12.5 chardet==4.0.0 cssselect==1.1.0...

I just realized that I exceeded my disk quota. I will test whether that caused the issue tomorrow.

Might be related to #115 Update: I was running my analysis on several data sets. For the one that got this error, some intermediate data frame was indeed empty.

I'm not that savvy in Python, but maybe `self.find_same_category_items` is interpreted as a "function handle" instead of a "method handle" (not actually technical terms). A method call `self.find_same_category_items(df)` is implicitly...

Maybe `concat` (or even `concatenate`) would be in good analogy to e.g. `max` and `maximum`, as `maximum(x) = max(x...)`. Here, `concat(v, dims=dims) = cat(v..., dims=dims)`, and `dims=ndims(first(v))+1` could be the...

> Or we add a keyword `lazy = false`, and only try these optimizations if user sets it as `true`? Would it be possible to set this based on purity...

> there needs to be a way to import/export syntax from a package vs. keeping it local. As it's already possible to use binary operators as identifiers, ``` julia> foo(_)...

This would be very useful. Has there been progress on this in the meantime?