File:ICC-example1.svg

Summary

Description
English: Dot plot illustrating the intraclass correlation coefficient
Date
Source Own work
Author Skbkekas
SVG development
InfoField
Source code
InfoField

Python code

from __future__ import division
import numpy as np
import matplotlib.pyplot as plt

def ICC(X):
    K = X.shape[1]
    m = X.mean(1)-X.mean()
    A = (m**2).mean()/X.var()
    A *= K/(K-1)
    A -= 1/(K-1)
    return A

def genplot(X, fname):

    n = X.shape[0]
    plt.clf()

    for i in range(1,n+1):
        plt.plot((i,i), (-2,2), '-', color='grey')
        plt.hold(True)

    for k in range(X.shape[1]):
        plt.plot(np.arange(1,n+1), X[:,k], 'o', color='blue')

    plt.xlim(0,n+1)
    plt.xlabel("Group number")
    plt.ylabel("Data value")

    icc = ICC(X)
    plt.title("ICC=%.2f" % icc)
    plt.xticks(range(1,n+1,2))

    plt.savefig(fname + ".png")
    plt.savefig(fname + ".svg")

X = np.random.uniform(low=-2, high=2, size=(20,4))
genplot(X, "ICC-example1")

V = np.random.uniform(low=-2, high=2, size=20)
X = np.zeros((20,4))
for i in range(len(V)):
    e = min(min(V[i]+2,2-V[i]),0.7)
    X[i,:] = np.random.uniform(low=V[i]-e, high=V[i]+e, size=4)
genplot(X, "ICC-example2")

Licensing

I, the copyright holder of this work, hereby publish it under the following licenses:
GNU head Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.
Category:License migration redundant#ICC-example1.svgCategory:GFDL#ICC-example1.svg
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
This licensing tag was added to this file as part of the GFDL licensing update.
Category:CC-BY-SA-3.0-migrated#ICC-example1.svg
Licence Art Libre Copyleft: This work of art is free; you can redistribute it and/or modify it according to terms of the Free Art License. You will find a specimen of this license on the Copyleft Attitude site as well as on other sites.
Category:FAL#ICC-example1.svg
You may select the license of your choice.
Category:Self-published work Category:Dot plots
Category:CC-BY-SA-3.0-migrated Category:Dot plots Category:FAL Category:GFDL Category:License migration redundant Category:Self-published work Category:Valid SVG created with Matplotlib code