I have a dataframe as showed below, and here i wanted to apply group by and count operations on it get the count of each category in a pydatatable way?.
here is a sample dt contains the different programming languages
prog_lang_dt = dt.Frame({"languages": ['html','R','R','html','R','javascript','R','javascript','html']})
Here is a code that i'm trying to apply group and count operations
prog_lang_dt[:,:,by(f.languages)]
Is there any count specific function for it in place of J ... DT[i,j,by]