pwwang

Results 72 comments of pwwang

Does this work? ```python import asyncio from functools import partial, wraps import shutil def wrap(func): @wraps(func) async def run(*args, loop=None, executor=None, **kwargs): if loop is None: loop = asyncio.get_event_loop() pfunc...

Same here on Ubuntu 20.04 WSL2, fish 3.3.1

This can be reproduced by fast tapping some ENTERs.

@smthpickboy What's the difference by putting `fisher update ilanCosman/tide` instead of doing it manually? I updated to 5.0.1 manually, the issue still persists.

I am using conda, too.

> Yes, you can solve this problem by adding `status is-interactive &&` before the conda init: > > ```fish > # >>> conda initialize >>> > # !! Contents within...

When doing it with simple operations (e.g. no mutations), raw pandas would be ~3x faster: ```python from timeit import timeit import pandas as pd from datar import f from datar.dplyr...

I am actually a little bit hesitant to allow selecting columns by indices with evaluating context. Since indices wrapped by `f` with evaluating context are expanded into sequences (e.g. `f[:3]`...

Thanks for reporting. That's a problem with the `count()` function. Working on v0.6 to address all performance issues, and also the issue with the `count` function. After its release, would...

Here is the behavior with `0.6.0`: ![image](https://user-images.githubusercontent.com/1188067/156963531-9e35d37b-8c99-4eee-a78f-90f98068aa5b.png) ![image](https://user-images.githubusercontent.com/1188067/156963572-0ec28dcf-0655-43f4-8608-87e961dc4180.png) `count()` is now maintaining the group structure, which is the desired behavior. See how it acts in R: ![image](https://user-images.githubusercontent.com/1188067/156963667-08a0e16b-0288-4aa2-bc67-13097f462d62.png) Feel free to...