Julia Programming Language
Delete missing values after the last non missing value in each id
New to Julia
dataframes
rafael.guerra
February 12, 2022, 11:19am
2
Check this option:
vcat([g[1:findlast(!isequal(missing), g.b),:] for g in groupby(df,:id)]...)
1 Like
show post in topic
Related topics
Topic
Replies
Views
Activity
How to filter out missings (using DataFramesMeta @where)
New to Julia
dataframes
2
712
July 22, 2019
How to remove rows containing missing from DataFrame?
New to Julia
6
13292
July 22, 2019
Show only rows with missing in one column
New to Julia
5
1574
September 1, 2018
Transforming a daily DataFrame with missing values into a DataFrame with end-of-month values
General Usage
dataframes
11
234
November 22, 2024
How can I skip missing values of a DF without deleating them?
New to Julia
dataframes
4
740
November 11, 2021