I'm creating a datatable as follows,
spotify_songs_dt = dt.fread('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2020/2020-01-21/spotify_songs.csv')
and its column types are,
spotify_songs_dt.stypes
Here I would like to take out only numeric fields of DT, and how can it be achieved in a datatable way?. In pandas dataframe we have a kind of function select_dtypes() for it.