Generate descriptive statistics. Descriptive statistics include those that summarize the central tendency, dispersion and shape of a dataset’s distribution, excluding NaN values
danfo.Series.describe()
Parameters: No parameter
return: Series
Example
constdfd=require("danfojs-node")let data = [1,2,3,4,5,6]let sf =newdfd.Series(data)sf.describe().print()