Is there any efficient method to do global parameter sensitivity analysis based on given data, without generating new cases to simulate (very expensive in my case).
Indeed, a lot of famous sensitivity analysis methods (such as Sobol indices (aka. Variance-based sensitivity analysis)) need to rerun the studied model on custom data points.
for example, after monte carlo simulation, I want to know is in the sampling region, which parameters are contributing the most to the measurement(output)variance. What I do now is first training a response surface model based on Monte Carlo samples, and then doing sobol global sensitivity analysis on that model. Is there any more direct solution to that?