jidt/java/source/infodynamics/measures/mixed/kraskov/MutualInfoCalculatorMultiVa...

832 lines
32 KiB
Java
Executable File

/*
* Java Information Dynamics Toolkit (JIDT)
* Copyright (C) 2012, Joseph T. Lizier
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package infodynamics.measures.mixed.kraskov;
import infodynamics.measures.continuous.MutualInfoCalculatorMultiVariate;
import infodynamics.measures.mixed.MutualInfoCalculatorMultiVariateWithDiscrete;
import infodynamics.utils.EuclideanUtils;
import infodynamics.utils.MathsUtils;
import infodynamics.utils.MatrixUtils;
import infodynamics.utils.EmpiricalMeasurementDistribution;
import infodynamics.utils.RandomGenerator;
import infodynamics.utils.KdTree;
import java.util.Iterator;
import java.util.Vector;
import java.util.Arrays;
import java.util.Random;
/**
* <p>Compute the Mutual Information between a vector of continuous variables and discrete
* variable using the Kraskov estimation method.</p>
* <p>Uses Kraskov method type 2, since type 1 only looks at points with
* distances strictly less than the kth variable, which won't work for one marginal
* being discrete.</p>
* <p>I have noticed that there are quite large bias negative values here
* where small K is used (e.g. for binary data splitting continuous into
* two distinct groups, 1400 observations, K=4 has bias ~ -.35)</p>
*
* <p>These calculators are <b>EXPERIMENTAL</b> -- not properly tested,
* and not well documented. The intended calling pattern is similar to
* {@link MutualInfoCalculatorMultiVariate}
* </p>
*
* <p>This calculator effectively implements the nearest neighbour method
* laid out <a href="http://journals.plos.org/plosone/article?id=10.1371%2Fjournal.pone.0087357">here</a>
* (see Ross reference below),
* but we have subtract out the sample point from the count in the discrete space,
* following the original KSG method.
* </p>
*
* <p><b>References:</b><br/>
* <ul>
* <li> B.C. Ross, "Mutual Information between Discrete and Continuous Data Sets",
* PLoS ONE 9(2): e87357. doi:
* <a href="http://journals.plos.org/plosone/article?id=10.1371%2Fjournal.pone.0087357">10.1371/journal.pone.0087357</a></li>
* </ul>
*
* @author Joseph Lizier (<a href="joseph.lizier at gmail.com">email</a>,
* <a href="http://lizier.me/joseph/">www</a>)
* @author Pedro A.M. Mediano (<a href="pmediano at imperial.ac.uk">email</a>,
* <a href="http://www.doc.ic.ac.uk/~pam213">www</a>)
*/
public class MutualInfoCalculatorMultiVariateWithDiscreteKraskov implements MutualInfoCalculatorMultiVariateWithDiscrete, Cloneable {
/**
* we compute distances to the kth neighbour
*/
protected int k = 4;
/**
* The set of continuous data observations, retained in case the user wants
* to retrieve the local entropy values of these.
* They're held in the order in which they were supplied in the
* {@link addObservations(double[][], int[])} functions.
*/
protected double[][] continuousData;
/**
* The set of discrete data observations, retained in case the user wants
* to retrieve the local entropy values of these.
* They're held in the order in which they were supplied in the
* {@link addObservations(double[][], int[])} functions.
*/
protected int[] discreteData;
/**
* Counts of how many observations belong to each discrete bin.
*/
protected int[] counts;
/**
* Number of possible states of the discrete variable
*/
protected int base;
/**
* Number of dimenions of the joint continuous variable
*/
protected int dimensions;
/**
* Number of observations added to the calculator
*/
protected int totalObservations;
/**
* Whether to print debug information
*/
protected boolean debug;
/**
* Last computed value of MI
*/
protected double mi;
/**
* Whether MI has been computed with the current observations
*/
protected boolean miComputed;
/**
* Saved digammaN for average and local computations
*/
protected double digammaN;
/**
* Saved digammaK for average and local computations
*/
protected double digammaK;
/**
* Storage for continuous observations supplied via {@link #addObservations(double[][], int[])}
* type calls
*/
protected Vector<double[][]> vectorOfContinuousObservations;
/**
* Storage for discrete observations supplied via {@link #addObservations(double[][], int[])}
* type calls
*/
protected Vector<int[]> vectorOfDiscreteObservations;
/**
* KdTree for range searches in full continuous dataset
*/
protected KdTree kdTreeJoint;
/**
* KdTrees for neighbour searches in binned continuous datasets
*/
protected KdTree[] kdTreeBins;
/**
* The norm type in use (see {@link #PROP_NORM_TYPE})
*/
protected int normType = EuclideanUtils.NORM_MAX_NORM;
/**
* Property name for the number of K nearest neighbours used in
* the KSG algorithm in the full joint space (default 4).
*/
public final static String PROP_K = "k";
/**
* Property name for what type of norm to use between data points
* for each marginal variable -- Options are defined by
* {@link KdTree#setNormType(String)} and the
* default is {@link EuclideanUtils#NORM_MAX_NORM}.
*/
public final static String PROP_NORM_TYPE = "NORM_TYPE";
/**
* Property name for whether to normalise the incoming data to
* mean 0, standard deviation 1 (default true)
*/
public static final String PROP_NORMALISE = "NORMALISE";
/**
* Property name for time difference between source and destination (0 by default,
* must be >= 0)
*/
public static final String PROP_TIME_DIFF = "TIME_DIFF";
/**
* Property name for an amount of random Gaussian noise to be
* added to the data (default is 1e-8, matching the MILCA toolkit).
*/
public static final String PROP_ADD_NOISE = "NOISE_LEVEL_TO_ADD";
// TODO: properly implement dynCorrExclTime
// /**
// * Property name for a dynamics exclusion time window
// * otherwise known as Theiler window (see Kantz and Schreiber).
// * Default is 0 which means no dynamic exclusion window.
// */
// public static final String PROP_DYN_CORR_EXCL_TIME = "DYN_CORR_EXCL";
/**
* Track whether we're going to normalise the joint variables individually
*/
protected boolean normalise = true;
/**
* Track the means of the joint variables if we are normalising them
*/
protected double[] means;
/**
* Track the std devs of the joint variables if we are normalising them
*/
protected double[] stds;
/**
* Time difference from the source to the destination observations
* (ie destination lags the source by this time:
* we compute I(source_{n}; dest_{n+timeDiff}).
* (Note that our internal sourceObservations and destObservations
* are adjusted so that there is no timeDiff between them).
*/
protected int timeDiff = 0;
/**
* Whether to add an amount of random noise to the incoming data
*/
protected boolean addNoise = true;
/**
* Amount of random Gaussian noise to add to the incoming data
*/
protected double noiseLevel = (double) 1e-8;
/**
* Size of dynamic correlation exclusion window. By default is set to 0.
*
* NOTE non-zero exclusion windows are not yet supported in mixed calculators.
*/
protected int dynCorrExclTime = 0;
/**
* Construct an instance of the KSG mixed MI calculator
*/
public MutualInfoCalculatorMultiVariateWithDiscreteKraskov() {
super();
}
/**
* Initialise the calculator.
*
* @param dimensions number of joint continuous variables
* @param base number of discrete states
*/
public void initialise(int dimensions, int base) {
mi = 0.0;
miComputed = false;
totalObservations = 0;
continuousData = null;
means = null;
stds = null;
discreteData = null;
this.dimensions = dimensions;
this.base = base;
kdTreeJoint = null;
kdTreeBins = null;
}
/**
* Sets properties for the calculator.
* Valid properties include:
* <ul>
* <li>{@link #PROP_K} - number of neighbouring points in joint kernel space (default 4)</li>
* <li>{@link #PROP_NORM_TYPE}</li> - normalization type to apply to
* working out the norms between the points in each marginal space.
* Options are defined by {@link EuclideanUtils#setNormToUse(String)} -
* default is {@link EuclideanUtils#NORM_MAX_NORM}.
* <li>{@link #PROP_NORMALISE} - whether to normalise the individual
* variables (true by default)</li>
* <li>{@link #PROP_TIME_DIFF} - Time difference between source and
* destination (0 by default). Must be >= 0.</li>
* <li>{@link #PROP_ADD_NOISE} -- a standard deviation for an amount of
* random Gaussian noise to add to
* each variable, to avoid having neighbourhoods with artificially
* large counts. (We also accept "false" to indicate "0".)
* The amount is added in after any normalisation,
* so can be considered as a number of standard deviations of the data.
* (Recommended by Kraskov. MILCA uses 1e-8; but adds in
* a random amount of noise in [0,noiseLevel) ).
* Default 1e-8 to match the noise order in MILCA toolkit.</li>
* <li>{@link #PROP_DYN_CORR_EXCL_TIME} -- a dynamics exclusion time window,
* also known as Theiler window (see Kantz and Schreiber);
* default is 0 which means no dynamic exclusion window.</li>
* </ul>
*
* @param propertyName name of the property to set
* @param propertyValue value to set on that property
*/
public void setProperty(String propertyName, String propertyValue)
throws Exception {
if (propertyName.equalsIgnoreCase(PROP_K)) {
k = Integer.parseInt(propertyValue);
} else if (propertyName.equalsIgnoreCase(PROP_NORM_TYPE)) {
normType = KdTree.validateNormType(propertyValue);
} else if (propertyName.equalsIgnoreCase(PROP_NORMALISE)) {
normalise = Boolean.parseBoolean(propertyValue);
// TODO: properly implement dynCorrExclTime
// } else if (propertyName.equalsIgnoreCase(PROP_DYN_CORR_EXCL_TIME)) {
// dynCorrExclTime = Integer.parseInt(propertyValue);
} else if (propertyName.equalsIgnoreCase(PROP_ADD_NOISE)) {
if (propertyValue.equals("0") ||
propertyValue.equalsIgnoreCase("false")) {
addNoise = false;
noiseLevel = 0;
} else {
addNoise = true;
noiseLevel = Double.parseDouble(propertyValue);
}
} else if (propertyName.equalsIgnoreCase(PROP_TIME_DIFF)) {
timeDiff = Integer.parseInt(propertyValue);
}
}
public void addObservations(double[][] continuousObservations,
int[] discreteObservations) throws Exception {
if (vectorOfContinuousObservations == null) {
// startAddObservations was not called first
throw new RuntimeException("User did not call startAddObservations before addObservations");
}
if (continuousObservations.length != discreteObservations.length) {
throw new Exception("Time steps for observations2 " +
discreteObservations.length + " does not match the length " +
"of observations1 " + continuousObservations.length);
}
if (continuousObservations[0].length != dimensions) {
throw new Exception("The continuous observations do not have the expected number of variables (" + dimensions + ")");
}
if (continuousObservations.length > Math.abs(timeDiff)) {
vectorOfContinuousObservations.add(continuousObservations);
vectorOfDiscreteObservations.add(discreteObservations);
}
}
public void addObservations(double[][] source, double[][] destination, int startTime, int numTimeSteps) throws Exception {
throw new RuntimeException("Not implemented yet");
}
public void setObservations(double[][] source, double[][] destination, boolean[] sourceValid, boolean[] destValid) throws Exception {
throw new RuntimeException("Not implemented yet");
}
public void setObservations(double[][] source, double[][] destination, boolean[][] sourceValid, boolean[][] destValid) throws Exception {
throw new RuntimeException("Not implemented yet");
}
/**
* Prepare the calculator to receive observations.
*
* Must be called between {@link #initialise()} and any addObservations
* method. Does not need to be called if
* {@link setObservations(double[][], int[])} is used.
*/
public void startAddObservations() {
vectorOfContinuousObservations = new Vector<double[][]>();
vectorOfDiscreteObservations = new Vector<int[]>();
}
/**
* Prepare observations previously added through any addObservations method
* for calculations.
*
* Must be called between any addObservations method and any compute method.
* Does not need to be called if {@link setObservations(double[][], int[])}
* is used.
*/
public void finaliseAddObservations() throws Exception {
if (vectorOfContinuousObservations.size() < 1) {
throw new Exception("Cannot compute MI with a null set of data");
}
// First work out the size to allocate the joint vectors, and do the allocation:
totalObservations = 0;
for (double[][] destination : vectorOfContinuousObservations) {
totalObservations += destination.length - Math.abs(timeDiff);
}
continuousData = new double[totalObservations][dimensions];
discreteData = new int[totalObservations];
// Construct the joint vectors from the given observations
// (removing redundant data which is outside any timeDiff)
int startObservation = 0;
Iterator<double[][]> iterator = vectorOfContinuousObservations.iterator();
for (int[] dct : vectorOfDiscreteObservations) {
double[][] cnt = iterator.next();
// Copy the data from these given observations into our master
// array, aligning them incorporating the timeDiff. Depending on whether
// timeDiff >= 0, we have to put first the elements of one array or the
// other.
if (timeDiff >= 0) {
MatrixUtils.arrayCopy(cnt, 0, 0,
continuousData, startObservation, 0,
cnt.length - timeDiff, dimensions);
System.arraycopy(dct, timeDiff, discreteData, startObservation, dct.length - timeDiff);
startObservation += cnt.length - timeDiff;
} else {
MatrixUtils.arrayCopy(cnt, Math.abs(timeDiff), 0,
continuousData, startObservation, 0,
cnt.length - Math.abs(timeDiff), dimensions);
System.arraycopy(dct, 0, discreteData, startObservation, dct.length - Math.abs(timeDiff));
startObservation += cnt.length - Math.abs(timeDiff);
}
}
// We don't need to keep the vectors of observation sets anymore:
vectorOfContinuousObservations = null;
vectorOfDiscreteObservations = null;
if (normalise) {
// We need to keep the means/stds ready to normalise local values
// that are supplied later:
means = MatrixUtils.means(continuousData);
stds = MatrixUtils.stdDevs(continuousData, means);
MatrixUtils.normalise(continuousData, means, stds);
}
// count the discrete states:
counts = new int[base];
try {
for (int t = 0; t < discreteData.length; t++) {
counts[discreteData[t]]++;
}
} catch (ArrayIndexOutOfBoundsException e) {
totalObservations = 0;
continuousData = null;
discreteData = null;
throw new RuntimeException("Values of the discrete variable must range from 0 to base-1");
}
for (int b = 0; b < counts.length; b++) {
if (counts[b] < k) {
throw new RuntimeException("This implementation assumes there are at least k items in each discrete bin");
}
}
if (addNoise) {
Random random = new Random();
// Add Gaussian noise of std dev noiseLevel to the data
for (int r = 0; r < totalObservations; r++) {
for (int c = 0; c < dimensions; c++) {
continuousData[r][c] +=
random.nextGaussian()*noiseLevel;
}
}
}
digammaN = MathsUtils.digamma(totalObservations);
digammaK = MathsUtils.digamma(k);
ensureKdTreesConstructed();
}
public void setObservations(double[][] continuousObservations,
int[] discreteObservations) throws Exception {
startAddObservations();
addObservations(continuousObservations, discreteObservations);
finaliseAddObservations();
}
/**
* Internal method to ensure that the Kd-tree data structures to represent the
* observational data have been constructed (should be called prior to attempting
* to use these data structures)
*/
public void ensureKdTreesConstructed() {
if (kdTreeJoint == null) {
kdTreeJoint = new KdTree(continuousData);
kdTreeJoint.setNormType(normType);
}
if (kdTreeBins == null) {
kdTreeBins = new KdTree[base];
for (int b = 0; b < base; b++) {
kdTreeBins[b] = new KdTree(
MatrixUtils.extractSelectedPointsMatchingCondition(
continuousData, discreteData, b));
kdTreeBins[b].setNormType(normType);
}
}
}
/**
* Compute what the average MI would look like were the second time series reordered
* as per the array of time indices in reordering.
* The user should ensure that all values 0..N-1 are represented exactly once in the
* array reordering and that no other values are included here.
*
* @param reordering
* @return
* @throws Exception
*/
public double computeAverageLocalOfObservations(int[] newOrdering)
throws Exception {
if (newOrdering == null) {
return computeAverageLocalOfObservations();
}
// Take a clone of the object to compute the MI of the surrogates:
// (this is a shallow copy, it doesn't make new copies of all
// the arrays)
MutualInfoCalculatorMultiVariateWithDiscreteKraskov miSurrogateCalculator =
(MutualInfoCalculatorMultiVariateWithDiscreteKraskov) this.clone();
// Generate a new re-ordered data set
int[] shuffledDiscreteData = MatrixUtils.extractSelectedTimePoints(discreteData, newOrdering);
// Since the observations in the original calculator have already been
// shifted according to timeDiff, set timeDiff = 0 in the surrogate calculator.
miSurrogateCalculator.setProperty(PROP_TIME_DIFF, "0");
// Perform new initialisations
miSurrogateCalculator.initialise(dimensions, base);
// Set new observations
miSurrogateCalculator.setObservations(continuousData, shuffledDiscreteData);
// Compute the MI
return miSurrogateCalculator.computeAverageLocalOfObservations();
}
/**
* Calculate the average MI in nats.
*/
public double computeAverageLocalOfObservations() throws Exception {
return computeFromObservations(false)[0];
}
/**
* <p>Computes the local values of the MI,
* for each valid observation in the previously supplied observations
* (with PDFs computed using all of the previously supplied observation sets).</p>
*
* <p>If the samples were supplied via a single call such as
* {@link #setObservations(double[][], int[])},
* then the return value is a single time-series of local
* channel measure values corresponding to these samples.</p>
*
* <p>Otherwise where disjoint time-series observations were supplied using several
* calls such as {@link #addObservations(double[][], int[])}
* then the local values for each disjoint observation set will be appended here
* to create a single "time-series" return array.</p>
*
* @return the "time-series" of local MIs in nats
* @throws Exception
*/
public double[] computeLocalOfPreviousObservations() throws Exception {
return computeFromObservations(true);
}
/**
* This protected method handles the computation of either the average or
* local MI (over parts of the total observations).
*
* <p>The method returns:<ol>
* <li>for (returnLocals == false), an array of size 1,
* containing the average MI </li>
* <li>for local MIs (returnLocals == true), the array of local MI values</li>
* </ol>
*
* @param returnLocals whether to return an array or local values, or else
* sums of these values
* @return either the average MI, or array of local MI value, in nats not bits
* @throws Exception
*/
protected double[] computeFromObservations(boolean returnLocals) throws Exception {
int[] cumcount = new int[base];
Arrays.fill(cumcount, 0);
// Count the average number of points within eps_x and eps_y
double averageDiGammas = 0;
double avNx = 0;
double avNy = 0;
double testSum = 0.0; // Used for debugging prints
int N = totalObservations;
double[] locals = null;
if (returnLocals) {
locals = new double[N];
}
for (int t = 0; t < N; t++) {
// Compute eps_x for this time step:
// find neighbours in the same discrete bin, then
// count points within eps_x in the whole dataset.
int b = discreteData[t];
double eps_x = kdTreeBins[b].findKNearestNeighbours(k, cumcount[b]++).poll().distance;
int n_x = kdTreeJoint.countPointsWithinOrOnR(t, eps_x, dynCorrExclTime);
// Number of points in discrete bin b, not counting itself
int n_y = counts[b] - 1;
// TODO: properly implement dynCorrExclTime. Code left here for future
// development. To implement exclusion window in the full joint space we need
// to track the sample indices in each point in the kdTreeBins. See comments in
// https://github.com/jlizier/jidt/pull/58#pullrequestreview-64865317
//
// if (dynCorrExclTime > 0) {
// // Add one here because later we are going to subtract the point itself
// // again in the for-loop when tt == t
// n_y++;
// for (int tt = t - dynCorrExclTime; tt <= t + dynCorrExclTime; tt++) {
// if ((tt < 0) || (tt >= totalObservations)) {
// continue;
// }
// if (discreteData[tt] == b) {
// n_y--;
// }
// }
// }
avNx += n_x;
avNy += n_y;
// And take the digamma before adding into the
// average:
double localSum = MathsUtils.digamma(n_x) + MathsUtils.digamma(n_y);
averageDiGammas += localSum;
// Don't need the 1/k correction here because the conditional entropy term
// is taken over the continuous space only. The correction is (m-1)/k
// for an entropy over m subspaces.
// double localValue = MathsUtils.digamma(k) - 1.0/(double)k - localSum + MathsUtils.digamma(N);
// Instead do:
double localValue = digammaK + digammaN - localSum;
if (returnLocals) {
locals[t] = localValue;
}
if (debug) {
testSum += localValue;
if (dimensions == 1) {
System.out.printf("t=%d: x=%.3f, eps_x=%.3f, n_x=%d, n_y=%d, local=%.3f, running total = %.5f\n",
t, continuousData[t][0], eps_x, n_x, n_y, localValue, testSum);
} else {
System.out.printf("t=%d: eps_x=%.3f, n_x=%d, n_y=%d, local=%.3f, running total = %.5f\n",
t, eps_x, n_x, n_y, localValue, testSum);
}
}
}
averageDiGammas /= (double) N;
if (debug) {
avNx /= (double)N;
avNy /= (double)N;
System.out.println(String.format("Average n_x=%.3f (-> digam=%.3f %.3f), Average n_y=%.3f (-> digam=%.3f)",
avNx, MathsUtils.digamma((int) avNx), MathsUtils.digamma((int) avNx - 1), avNy, MathsUtils.digamma((int) avNy)));
System.out.printf("Independent average num in joint box is %.3f\n", (avNx * avNy / (double) N));
System.out.println(String.format("digamma(k)=%.3f - averageDiGammas=%.3f + digamma(N)=%.3f\n",
digammaK, averageDiGammas, digammaN));
}
// Don't need the 1/k correction here because the conditional entropy term
// is taken over the continuous space only. The correction is (m-1)/k
// for an entropy over m subspaces.
// mi = MathsUtils.digamma(k) - 1.0/(double)k - averageDiGammas + MathsUtils.digamma(N);
// Instead, do:
mi = digammaK + digammaN - averageDiGammas;
miComputed = true;
double[] returnValues;
if (returnLocals) {
returnValues = locals;
} else {
returnValues = new double[] {mi};
}
return returnValues;
}
/**
* Compute the significance of the mutual information of the previously
* supplied observations.
*
* We destroy the p(x,y) correlations, while retaining the p(x), p(y)
* marginals, to check how significant this mutual information actually was.
*
* This is in the spirit of Chavez et. al., "Statistical assessment of
* nonlinear causality: application to epileptic EEG signals", Journal of
* Neuroscience Methods 124 (2003) 113-128 which was performed for transfer
* entropy.
*
* @param numPermutationsToCheck
* @return the proportion of MI scores from the distribution which have
* higher or equal MIs to ours. (i.e. 1 - CDF of our score)
*/
public synchronized EmpiricalMeasurementDistribution computeSignificance(int numPermutationsToCheck) throws Exception {
// Generate the re-ordered indices:
RandomGenerator rg = new RandomGenerator();
// (Not necessary to check for distinct random perturbations)
int[][] newOrderings = rg.generateRandomPerturbations(continuousData.length, numPermutationsToCheck);
return computeSignificance(newOrderings);
}
/**
* Compute the significance of the mutual information of the previously
* supplied observations.
*
* We destroy the p(x,y) correlations, while retaining the p(x), p(y)
* marginals, to check how significant this mutual information actually was.
*
* This is in the spirit of Chavez et. al., "Statistical assessment of
* nonlinear causality: application to epileptic EEG signals", Journal of
* Neuroscience Methods 124 (2003) 113-128 which was performed for transfer
* entropy.
*
* @param newOrderings the specific new orderings to use
* @return the proportion of MI scores from the distribution which have
* higher or equal MIs to ours.
*/
public EmpiricalMeasurementDistribution computeSignificance(int[][] newOrderings) throws Exception {
int numPermutationsToCheck = newOrderings.length;
if (!miComputed) {
computeAverageLocalOfObservations();
}
// Store the real observations and their MI:
double actualMI = mi;
EmpiricalMeasurementDistribution measDistribution = new EmpiricalMeasurementDistribution(numPermutationsToCheck);
int countWhereMiIsMoreSignificantThanOriginal = 0;
for (int i = 0; i < numPermutationsToCheck; i++) {
// Compute the MI under this reordering
double newMI = computeAverageLocalOfObservations(newOrderings[i]);
measDistribution.distribution[i] = newMI;
if (debug){
System.out.println("New MI was " + newMI);
}
if (newMI >= actualMI) {
countWhereMiIsMoreSignificantThanOriginal++;
}
}
// Restore the actual MI and the observations
mi = actualMI;
// And return the significance
measDistribution.pValue = (double) countWhereMiIsMoreSignificantThanOriginal / (double) numPermutationsToCheck;
measDistribution.actualValue = mi;
return measDistribution;
}
/**
* <p>Compute the local MI values for the given observations,
* using the previously set observations to compute the PDFs.
* That is to say, we will evaluate the required counts for each
* observation here based on the state space constructed from the
* previous observations only (not these ones). This is non-standard,
* and is not considered in the Kraskov paper. It is slightly unclear
* how to account for the fact that this observation itself is not
* in the data set used for computing the PDFs - I think though that
* it should be ignored, since the data point was not counted in its
* own counts in the standard version anyway.</p>
*
* <p><b>Importantly</b>, the supplied observations are intended to be new
* observations, not those fed in to compute the PDFs from. There would be
* some subtle changes necessary to accomodate computing locals on
* the same data set (e.g. not counting the current point as one
* of those within eps_x etc.).
* </p>
*
* @param continuousStates multivariate observations of the continuous variable
* (1st index is time, 2nd is variable number)
* @param discreteStates unvariate observations of the discrete variable
*
*/
public double[] computeLocalUsingPreviousObservations(double[][] continuousNewStates,
int[] discreteNewStates) throws Exception {
if (normalise) {
// The stored observations continuousData have been normalised
// according to their stored means and stds; we need to
// normalise the incoming observations the same way before
// comparing them
continuousNewStates = MatrixUtils.normaliseIntoNewArray(
continuousNewStates, means, stds);
}
double fixedPartOfLocals = digammaK + MathsUtils.digamma(totalObservations); // Use N_samplesForPdfs here because that's what would be in denominator of probability functions
double testSum = 0.0, avNx = 0.0, avNy = 0.0;
double[] locals = new double[discreteNewStates.length];
for (int t = 0; t < discreteNewStates.length; t++) {
int b = discreteNewStates[t];
double[][] x = new double[][] {continuousNewStates[t]};
double eps_x = kdTreeBins[b].findKNearestNeighbours(k, x).poll().distance;
int n_x = kdTreeJoint.countPointsWithinR(x, eps_x, true);
int n_y = counts[b];
// Now compute the local value:
locals[t] = fixedPartOfLocals -
MathsUtils.digamma(n_x) - MathsUtils.digamma(n_y);
if (debug) {
testSum += locals[t];
avNx += n_x;
avNy += n_y;
if (dimensions == 1) {
System.out.printf("t=%d: x=%.3f, eps_x=%.3f, n_x=%d, n_y=%d, local=%.3f, running total = %.5f\n",
t, continuousNewStates[t][0], eps_x, n_x, n_y, locals[t], testSum);
} else {
System.out.printf("t=%d: eps_x=%.3f, n_x=%d, n_y=%d, local=%.3f, running total = %.5f\n",
t, eps_x, n_x, n_y, locals[t], testSum);
}
}
}
if (debug) {
avNx /= (double) discreteNewStates.length;
avNy /= (double) discreteNewStates.length;
System.out.printf("Average n_x=%.3f, Average n_y=%.3f\n", avNx, avNy);
}
return locals;
}
public void setDebug(boolean debug) {
this.debug = debug;
}
/**
* Return the MI last calculated in a call to {@link #computeAverageLocalOfObservations()}
* or {@link #computeLocalOfPreviousObservations()} after the previous
* {@link #initialise()} call.
*
* @return the last computed average mutual information
*/
public double getLastAverage() {
return mi;
}
/**
* Get the number of samples to be used for the PDFs here
* which have been supplied by calls to
* {@link #setObservations(double[][], int[])},
* {@link #addObservations(double[][], int[])}
* etc.
*
* <p>Note that the number of samples may not be equal to the length of time-series
* supplied (i.e. where a {@link PROP_TIME_DIFF}
* is set).
* </p>
*/
public int getNumObservations() {
return totalObservations;
}
}