I'm going through the Graphlab documentation and I am trying to figure out how to duplicate the pandas functionality were na values are replaced by the median, the mean, or the mode, etc... In pandas you simply do this by: df.dropna().median() or df.dropna().mean() etc....
But the documentation on the dropna and fillna functions for SFrame don't mention anything similar. Is it possible at all in SFrame?