Reputation: 1294
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.
Upvotes: 42
Views: 55048
Reputation: 1228
Now you can use names = FALSE
as argument.
> quantile(c(1,2,3,4),0.75, names = FALSE)
[1] 3.25
Upvotes: 16
Reputation: 86
You can use unname()
to remove the name attribute, as in:
> unname(quantile(df$column, .75))
[1] 75
Upvotes: 4
Reputation: 61154
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
Upvotes: 45
Reputation: 6267
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
Upvotes: 8