Dain1234 / CSA1674-DWDM

0 stars 0 forks source link

Experiment 5(Histogram,Scatterplot) #5

Open Dain1234 opened 1 year ago

Dain1234 commented 1 year ago

HISTOGRAM: a<-c(55,67,89,80,90) hist(a) WhatsApp Image 2023-02-03 at 1 41 06 PM

Dain1234 commented 1 year ago

Scatterplot: set.seed(9)

x<-rnorm(1000) y<-rnorm(1000)

smoothScatter(y~x) smoothScatter(x,y) WhatsApp Image 2023-02-03 at 1 48 21 PM