zoukankan      html  css  js  c++  java
  • CORREL

    CORREL

    Returns the correlation coefficient of the array1 and array2 cell ranges. Use the correlation coefficient to determine the relationship between two properties. For example, you can examine the relationship between a location's average temperature and the use of air conditioners.

    Syntax

    CORREL(array1,array2)

    Array1     is a cell range of values.

    Array2     is a second cell range of values.

    Remarks

    • If an array or reference argument contains text, logical values, or empty cells, those values are ignored; however, cells with the value zero are included.
    • If array1 and array2 have a different number of data points, CORREL returns the #N/A error value.
    • If either array1 or array2 is empty, or if s (the standard deviation) of their values equals zero, CORREL returns the #DIV/0! error value.
    • The equation for the correlation coefficient is:

    Equation

    where

    x and y

    are the sample means AVERAGE(array1) and AVERAGE(array2).

    Example

    The example may be easier to understand if you copy it to a blank worksheet.

    ShowHow to copy an example

     
    1
    2
    3
    4
    5
    6
    AB
    Data1 Data2
    3 9
    2 7
    4 12
    5 15
    6 17
    Formula Description (Result)
    =CORREL(A2:A6,B2:B6) Correlation coefficient of the two data sets above (0.997054)
  • 相关阅读:
    数学学习合集
    萌萌的网络流~~
    2014西安全国邀请赛
    好题、趣题、麻烦题
    单调栈与单调队列
    字符串习题
    计算几何
    summer 2014 校队训练 嗷嗷待补之题
    2014多校联合训练第一场(组队训练)
    summer 2014 Round 4 解题报告
  • 原文地址:https://www.cnblogs.com/zeroone/p/3306699.html
Copyright © 2011-2022 走看看