English 中文(简体)
不同数据集的百分点组合:如何做到这一点?
原标题:Combination of percentiles from different data sets: how can this be accomplished?

我需要计算一系列相关但分门别类的数据集的Nth%。

由于记忆限制,综合数据集太大,无法一劳永逸地计算,但进行零敲碎打计算的框架已经建立。 因此,我如何计算每个数据组,然后将这些计算结合起来,以找到我所需要的百分点?

关于数据的其他信息:

  • 这些数据往往不可靠。

  • 个人数据集的大小大致相同,但并不总是这样。

  • 预计单个数据组不会分享同样的分布。

否 我赞扬中位数、手段和标准偏差,然后估算出任何百分数。

问题回答

单靠中位、平均和标准偏差不大可能足够,特别是如果你有外逃的话。

如果需要准确的百分点,这是一个平行的计算问题。 这方面已经做了一些工作,例如:的平行模式。

如果只需要大约百分点,那么交叉标签就有一个问题—— 所有权=“Estimation of ality given quantiles of subset>。 甲型六氯环己烷()当量的估算,建议采用一种替代方法。 您将使用每个数据集的一些(但并非全部)数据点,制作一个新的综合数据集,该数据集仅够适合单一机器,并计算其百分数。

Another approximate approach, efficient if percentiles of each segment are already available, would be to approximate the cumulative distribution function of each segment as a step function from the percentiles. Then the overall distribution would be a finite mixture of the segment distributions and the cumulative distribution function a weighted sum of the segment cumulative distribution functions. The quantile function (i.e., the percentiles) could be computed by numerically inverting the cumulative distribution function.





相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签