Tagged Questions
The quantile tag has no wiki summary.
4
votes
1answer
549 views
Quantile functions in boost (C++)
Judging from the documentation boost seems to offer quantile functions (inverse cdf functions) for both normal and gamma distributions, but its not clear for me how can I actually use them. Could ...
4
votes
2answers
172 views
Is there a better way to create quantile “dummies” / factors in R?
i´d like to assign factors representing quantiles. Thus I need them to be numeric.
That´s why I wrote the following function, which is basically the answer to my problem:
qdum <- function(v,q){
...
2
votes
3answers
388 views
Sorted quantile mean via Rpy
The real goal here is to find the quantile means (or sums, or median, etc.) in Python. Since I'm not a power user of Python but have used R for a while, my chosen route is via Rpy. However, I ran into ...
2
votes
1answer
296 views
R:lattice.qq How do I do a multi-panel plot of treatment[x] vs control?
I have a dataframe that looks like this:
str(Data)
'data.frame': 11520 obs. of 29 variables:
$ groupname : Factor w/ 8 levels "Control","Treatment1",..: 1 1 1 1 1 1 1 1 1 1 ...
$ fCycle : ...
1
vote
3answers
98 views
performing column-by-column operation in R
Folks
I have a temperature data for ever zone in a building, something like this:
Lines <- "Date,Zone01,Zone02
01/01 01:00:00,24.5,21.3
01/01 02:00:00,24.3,21.1
01/01 03:00:00,24.1,21.1
...
1
vote
1answer
44 views
algorithm to dynamically monitor quantile(s)
I want to estimate the quantile of some data. The data are so huge that they can not be accommodated in the memory. And data are not static, new data keep coming. Does anyone know any algorithm to ...
1
vote
2answers
268 views
Is there an easy way to calculate quantiles with bash?
Lets say I have a log file from a web server with response times per request:
_1st_request 1334
_2nd_request 345
_3rd_request 244
_4th_request 648
......... etc
Is there an easy way with bash ...
0
votes
1answer
90 views
Why Does 1.59 not Equal 1.59
Alright, so I have the strangest issue here. I'm taking the mean of a dependent variable Y, when we partition a space by a particular quantile of an independent variable X.
My issue is, the quantile ...
0
votes
1answer
217 views
Quantile regression and p-values
I am applying guantile regression for my data-set (using R). It is easy to produce the nice scatterplot-image with different quantile regression lines
(taus <- c(0.05,0.25,0.75,0.95)).
Problem ...
0
votes
2answers
446 views
R code Quantile Regression Fit Stock data problem
I am trying to implement the Quantreg Quantile Regression function on data I retrieved from Yahoo. It appears I need to perform a procedure on the stock data so that the rq() function can read the ...
0
votes
2answers
771 views
Calculating Percentiles (Ruby)
My code is based on the methods described here and here.
def fraction?(number)
number - number.truncate
end
def percentile(param_array, percentage)
another_array = param_array.to_a.sort
r = ...
-1
votes
1answer
385 views
How to interprete the results of quantile regression panel data models of R
How to interprete the results of panel data models of R?
I estimate a adapted form of Koenker's (2004) suggestion for a quantile regression approach with panel data, for my data:
rq.fit.panel ...