40

I'm sorry for what may be a silly question. When I do:

> quantile(df$column, .75) #get 3rd quartile

I get something like

75% 
1234.5 

Is there a way to just get the value (1234.5) without the descriptive "75%" string? Thank you very much.

rstruck
  • 1,174
  • 4
  • 17
  • 27

4 Answers4

42

You can also use unname

> result <- quantile(c(1,2,3,4),0.75)
> unname(result)
[1] 3.25

Also you can subset by using [[

> result[[1]]
[1] 3.25
Jilber Urbina
  • 58,147
  • 10
  • 114
  • 138
16

Now you can use names = FALSE as argument.

> quantile(c(1,2,3,4),0.75, names = FALSE)
[1] 3.25
aldo_tapia
  • 1,153
  • 16
  • 27
8

Sure, you can just convert the returned value of quantile to a numeric. This effectively removes the names.

Illustration:

> quantile(c(1,2,3,4),0.75)
 75% 
3.25 
> as.numeric(quantile(c(1,2,3,4),0.75))
[1] 3.25
Jealie
  • 6,157
  • 2
  • 33
  • 36
4

You can use unname() to remove the name attribute, as in:

> unname(quantile(df$column, .75))
[1] 75
francis
  • 9,525
  • 2
  • 25
  • 41
gregor
  • 86
  • 5
  • Thanks gregor and francis! I just accepted the first answer, but I did not know about unname() as I am new to R, so thanks v much for this info. It also works perfectly – rstruck Feb 10 '15 at 22:00