How to use plot_trace to draw individuals results in dependet piture?

You can select the random variables you want to plot by passing a list to var_names

with pm.Model() as model: 
    pm.Normal('RV1') 
    pm.Normal('RV2') 
    trace = pm.sample(200) 
    pm.traceplot(trace, var_names=['RV1'])