I need to use the pdf of a Wishart distribution which is only defined in the package MultivariateStatistics`. However, after loading the package, some or all of the multivariate distributions pdfs I use (e.g. MultinormalDistribution, MultivariateTDistribution) change their font colour to red.
The programme still works, but I find this strange. I've tried reading this link on shadowing on the Wolfram site, but I'm not sure I understood it...
It means that by loading the package, now Mathematica will use the definitions from the package, and not the global definitions. Did I understand correctly? If so, I assume the definition is the same, with the possible exception of the input sintax, for example WishartMatrixDistribution and WishartDistribution have their inputs in reverse order to each other, but they should describe the same distribution...
How can I be sure that I'm using these new definitions in a proper way? Should I be worried of a possible conflict in the main programme?
I'm using version 11. At request, here's a minimal example:
Needs["MultivariateStatistics`"]
PDF[MultinormalDistribution[{0, 0}, IdentityMatrix[2]], {x, y}]
(* E^(1/2 (-x^2 - y^2))/(2 π) *)