I have a dataset ($300 \times 14$ matrix). This means it has 14 features and 300 observations.
$n=14$ $$ \begin{pmatrix} a_{11} & 0 & \ldots & a_{1n}\\ 0 & a_{22} & \ldots & a_{2n}\\ \vdots & \vdots & \ddots & \vdots\\ 0 & 0 &\ldots & a_{300,14} \end{pmatrix} $$
Now, is it unreasonable if I estimate the density (p.d.f) of each row of this matrix $$\begin{pmatrix} a_{11} & 0 & \ldots & a_{1n}\end{pmatrix} $$separately using kernel density? Or should I calculate the p.d.f of the whole matrix? In other words, it means I want to estimate the density of each multivariate vector (a vector which contains values of readings of 14 sensors) separately. When we have multivariate data, should we use estimator for the whole data?