I am trying to make a table of all my numerical variables (i.e. feature) in the following format:
Feature | Count | % Missing | Cardinality | Min. | 1st Quartile | Mean | Median | 3rd Quartile | Max. | Std. Dev. |
--------|-------|-----------|-------------|------|--------------|------|--------|--------------|------|-----------| | | | | | | | | | | |
So each row signifies a specific numeric variable and each column the statistics shown above (Count, % Missing, Cardinality, Min., 1st Quartile, Mean, Median, 3rd Quartile, Max. Std. Dev.)
Say my dataset is called Mashable and my numerical variables are called X, Y and Z. How would I create this table?
Thanks in advance!