Réaliser un affichage graphique

Graphique 1

ggplot(data=v_data,aes(y=var,x=id))+geom_line(color="blue")+theme_bw()

Graphique 2

ggplot(data=v_data,aes(x=var))+geom_histogram(color="black", fill="blue",bins=10)+theme_bw()