4  Chapter 4: Future directions

In the missing data scenarios described in Chapter 3, which channel or tisue will be missing cannot be predicted. These can be seen as missing completely at random (MCAR), i.e. the reason for missing is irrelevant with how the image looks like. However, for the low-plex image channel imputation methods, the markers are selected by machine learning methods to maximize the accuracy. These however, are missing not at random (MNAR), i.e. the reason for “missing” (channels to be imputed) are correlated with the image itself. For this reason, this type of imputation results should be taken with a grain of salt. It might be possible to deduce the amount of bias this creates through statistical inference, but for now this is not in the scope of this project. The following two considerations are ignored in the works mentioned in Chapter 3. In the future, we can perform an evaluation and see how much the imputation results improve when the following statistical properties are considered.

4.1 Multiple imputation

All methods in Chapter 3 evaluated the accuracy of their result by either comparing with the imputation outcome of a previous method or with a held-out evaluation dataset. In addition, Wu et al. (2023) in Section 3.2.1 used the imputation output for cell phenotyping and predicting patient phenotypic outcomes. In principle, this is not the best practice of subsequent analysis with the imputation outcome. Point estimates from such imputation underestimates the standard deviation of the point estimates, as shown below.

Rubin (1996) states that it is important to be statistically valid for estimates of scientific estimands, such as population mean. Statistical validity for an estimand means an at least approximately non-biased point estimate, and an statistical test that rejects the null hypothesis no more than 5% of the time, when the nominal significance level is 5% (Rubin 1996; Van Buuren 2018). Under such guideline, we can check the multiple imputation estimand’s expectation and variance. Van Buuren (2018) presented a clear interpretation of such, conditioning on observed data: Let YmisY_{mis} be missing data, and YobsY_{obs} be observed data, QQ be the population value and Q̂\hat Q is the estimate of QQ. The posterior distribution of QQ given observed data is

P(Q|Yobs)=P(Q|Yobs,Ymis)P(Ymis|Yobs)dYmis P(Q|Y_{obs})=\int P(Q|Y_{obs}, Y_{mis})P(Y_{mis}|Y_{obs})dY_{mis}

The posterior mean of QQ is therefore

E[Q|Yobs]=E[E(Q|Yobs,Ymis)|Yobs] E[Q|Y_{obs}]=E[E(Q|Y_{obs}, Y_{mis})|Y_{obs}]

Which can be interpreted as the average of estimates over repeatedly imputed data, given the observed data.

The posterior variance is therefore

Var(Q|Yobs)=E[Var(Q|Yobs,Ymis)|Yobs]+Var[E(Q|Yobs,Ymis)|Yobs] Var(Q|Y_{obs})=E[Var(Q|Y_{obs}, Y_{mis})|Y_{obs}]+Var[E(Q|Y_{obs}, Y_{mis})|Y_{obs}] Which can be interpreted as the within-variance of the estimate in each imputed data, and the between-variance among the repeatedly imputed data.

In this case, single imputation would be an unbiased estimator. However, it will be biased in variance estimation, as it does not incorporate between-variance at all (the second proportion of the last equation RHS). Therefore, for better accuracy with estimate variance, multiple imputation should be used. The subsequent project could use the colon map data in GammaGateR project, where some channels are missing, and compare the validity of confidence interval for the estimated quantities.

4.2 Imputation with patient information

As described in Wu et al. (2023), cell phenotypes are usually considered with certain prognostic information, such as patient survival, recurrence, and disease status. That is, suppose we want to estimate a certain parameter θ\theta, patient parameters XX, we are assuming

θ=E[g(X,Yobs,Ymis)] \theta=E[g(X, Y_{obs}, Y_{mis})] and hence Ymis=f(X,Yobs)+ϵ,ϵ(X,Yobs) Y_{mis}=f(X, Y_{obs})+\epsilon, \epsilon \perp (X, Y_{obs})

The existing imputation methods all uses Ymis=f(Yobs)+ϵY_{mis}=f(Y_{obs})+\epsilon. That is, there exists bias of f(X,Yobs)f(Yobs) f(X, Y_{obs})-f(Y_{obs})

This bias can only be ignored if we assume that YmisX|YobsY_{mis} \perp X|Y_{obs}. That is, patient information does not contribute to the prediction of missing data given observed data. This is a bold assumption to make, and should be avoided unless with concrete supporting prior knowledge.