Bjorn Madsen
Bjorn Madsen
Thank you for reaching out and helping us improve Vaex! Before you submit a new Issue, please read through the [documentation](https://docs.vaex.io/en/latest/). Also, make sure you search through the Open and...
During keyword ingestion in: https://github.com/pyexcel/pyexcel/blob/d8b965060889708ed7f718139076a71fe8c25490/pyexcel/core.py#L86 pyexcel assumes dest_file_name is a str, does not tolerate pathlib.Path Here's an example: ```python >>> pyexcel.save_as(array=data, dest_file_name=path) Traceback (most recent call last): File "", line...
The supported formats for import are documented, but the supported formats for output are not. 
Would it be possible to add a progress bar ([tqdm](https://github.com/tqdm/tqdm) preferred) to load & save sheet/book? I often see 400-500Mb xlsx books and it does take a little while to...
https://en.wikipedia.org/wiki/Radix_tree  Automatic conversion of column of text to radix tree would be a neat helper for many cases. In particular as a radix tree is quick to update in...
I'm adding this issue, as I've received a request to add an examples section for the github repo, so that the more sophisticated examples are explained using jupyter notebooks, with...
https://en.wikipedia.org/wiki/Route_inspection_problem
Implement example of the [page rank](https://en.wikipedia.org/wiki/PageRank#Python) algorithm with graph.
- Detect convex hull on XY and XYZ graph. Example of xy graph is available here: https://root-11.github.io/content/calculating-the-convex-hull/index.html