You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use DataFramesMeta in Jupyter Notebooks for data analysis a lot. I prefer to develop some chain of where/select etc functions, like:
@linq data |>where(...) |>where(...)
During development of such a workflow I usually have a first(5) at the end to check everything works ok, like:
@linq data |>where(...) |>where(...) |>first(5)
If everything is fine I want to the resulting data "flow" into a new variable. In principle I can do either:
newdata =@linq data |>where(...) |>where(...)
or
@linq data |>where(...) |>where(...)
newdata = ans
Both are not optimal. In the first version the newdata is at the very beginning of the expression, the second uses the ans variable. Ideally I would like to be able to assign to the right using some special operator (e.g. |>=), like:
@linq data |>where(...) |>where(...) |>= newdata
Would this be conceivable?
The text was updated successfully, but these errors were encountered:
I use
DataFramesMeta
in Jupyter Notebooks for data analysis a lot. I prefer to develop some chain of where/select etc functions, like:During development of such a workflow I usually have a
first(5)
at the end to check everything works ok, like:If everything is fine I want to the resulting data "flow" into a new variable. In principle I can do either:
or
Both are not optimal. In the first version the
newdata
is at the very beginning of the expression, the second uses theans
variable. Ideally I would like to be able to assign to the right using some special operator (e.g.|>=
), like:Would this be conceivable?
The text was updated successfully, but these errors were encountered: