Julia DataFrame filtering based on string length -


is there vectorized way filter julia dataframe based on length of string within column?

is following sufficient:

df = dataframe(fielda=[1,2],fieldb=["good","morning"]) df[bool[length(x)<5 x in df[:fieldb]],:] 

Comments

Popular posts from this blog

vb.net - How to ignore if a cell is empty nothing -

Sort a complex associative array in PHP -

recursion - Can every recursive algorithm be improved with dynamic programming? -