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

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

android - How to prevent keyboard from closing when bottom dialog is open? -