Maximilian Roos
Maximilian Roos
Forgive me for using this as the fluent questions thread, but another case: #### With a single call ```python def x(): base_ds["security_score_filtered"] = base_ds["security_score_risk_adj"].where( base_ds["is_share_price_valid"] & base_ds["is_market_cap_valid"] & base_ds["is_liquid"] )...
Adding another here, as a (hopefully) helpful additional case: From: ```python df = ( gbq .read_gbq(query, project="sixty-capital-prod") .sort_values("factset_entity_id") ) ``` To: ```python df = gbq.read_gbq(query, project="sixty-capital-prod").sort_values( "factset_entity_id" ) ```
And another: Looks good: ```python completion_time = ( a.read_namespaced_job(job.metadata.name, namespace="default") .status() .completion_time() ) ``` Now without the `()` on the last two lines after `status` & `completion_time` : ```python completion_time...
No great stress! Easy to turn off for one calc. > I would appreciate any help fixing it :) (just to set expectations — I'm way way over on my...
Not sure whether to add this here vs. open a new issue, lmk if a new issue is better. One thing that would be useful with templating is the ability...
Great, thanks a lot for the clear post @zesterer . (I also realize a couple of my examples weren't correct, so this was informative for me)
It's in a state where it would be useful to: - discuss the current proposed implementation - discuss the best path between here and a nice generic approach, balancing elegance...
Thanks for responding @gshank ! I very much agree with your assessment — there's a tradeoff between the "fair amount of complications" :) vs. having something pluggable. In the currently...
Thanks for the review @jtcohen6, very much agree with your comments. As discussed offline, let's touch base in a few weeks on the best path forward.
> Is this dead? I would love to revive it! There are 22 :+1:s, so there is a decent amount of community interest... If there were interest from the dbt...