if petal. width is o.1 then my new column value should be 1 :n number like wise it has ti print for every unique values
`data=iris
data=data[order(data$Petal.Width),]
count=1
data$iden<-with(data,(data$Petal.Width))
for (i in 1:length(data)) {
if(data$Petal.Width[i] == data$Petal.Width[i]){
count=count+1 }}`