I want to exclude 0 after decimal point from my summary below like if a value is
22.34
31.7
76.00
output should be
22.34
31.7
76
if there is zero after decimal point it should get excluded automatically
Median =round(quantile(data$column, type=4, probs = seq(0, 1, 0.25), na.rm=TRUE)