Michael Chow

Results 189 issues of Michael Chow

See numpy NEP 23. pandas dropped support in recent release, and 3.7+ have the nice feature of using type annotations to register singledispatch funcs Edit: see.. * #391

.refine

These functions are in `siuba/dply/verbs.py`. For an example of adding tests to siuba, see this screencast: https://youtu.be/N7Sm4qdm_rs

time:1
type:tests

From email convo with Michael Bouldin--may be helpful to move the lambda example to later inthe README, and include two examples on siuba's key points of value: no more reset_index()...

type:documentation

stubbing here, so I can link to this issue from the docs :)

type:documentation

Packages like ibis, and dbplyr have core properties as part of their table API. Namely, * **ibis** - has client class that handles interactions with remote (e.g. get a db...

be:sql
type:research

For example, in the code below, the output replace np.nan from the first series, with None... ```python x = pd.Series([1., None, None]) abc = pd.Series(['a', 'b', None]) coalesce(x, abc) #...

type:bug
be:pandas

Currently done for filter and arrange in siuba/tests/test_dply_vector.py

be:pandas
type:tests

E.g. filter currently generates two select statements (on top of current), an inner one for doing aggregations (e.g. storing `b.mean()` in `filter(b.mean() > 1)`), and an outer for doing the...

type:documentation
.epic
be:sql
.needs-research

Once python 3.7 support is dropped, we should update Call to use position only arguments: ```python from siuba.siu import Call # errors because func is name of first parameter Call("some_operation",...

type:bug
time:1
core:siu
.api-developer