Skip to content

Commit 1f33634

Browse files
removed remaining xarray references
1 parent 1495eb2 commit 1f33634

File tree

5 files changed

+15
-18
lines changed

5 files changed

+15
-18
lines changed

diffxpy/models/batch_bfgs/optim.py

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from numpy.linalg import pinv
77
import numpy.random
88
from multiprocessing import Pool
9-
import xarray as xr
109

1110
from .objectives import *
1211

diffxpy/models/hessian.py

+12-12
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ def hes_nb_glm_mean_block(
2727
Estimated mean parameters across cells for a given gene.
2828
:param mu: np.ndarray (cells,)
2929
Estimated dispersion parameters across cells for a given gene.
30-
:param design_loc: np.ndarray, matrix, xarray (cells, #parameters location model)
30+
:param design_loc: np.ndarray, matrix (cells, #parameters location model)
3131
Design matrix of location model.
32-
:param design_scale: np.ndarray, matrix, xarray (cells, #parameters shape model)
32+
:param design_scale: np.ndarray, matrix (cells, #parameters shape model)
3333
Design matrix of shape model.
3434
:param i: int
3535
Index of first dimension in fisher information matrix which is to be computed.
@@ -78,9 +78,9 @@ def hes_nb_glm_disp_block(
7878
Estimated mean parameters across cells for a given gene.
7979
:param mu: np.ndarray (cells,)
8080
Estimated dispersion parameters across cells for a given gene.
81-
:param design_loc: np.ndarray, matrix, xarray (cells, #parameters location model)
81+
:param design_loc: np.ndarray, matrix (cells, #parameters location model)
8282
Design matrix of location model.
83-
:param design_scale: np.ndarray, matrix, xarray (cells, #parameters shape model)
83+
:param design_scale: np.ndarray, matrix (cells, #parameters shape model)
8484
Design matrix of shape model.
8585
:param i: int
8686
Index of first dimension in fisher information matrix which is to be computed.
@@ -129,9 +129,9 @@ def hes_nb_glm_meandisp_block(
129129
Estimated mean parameters across cells for a given gene.
130130
:param mu: np.ndarray (cells,)
131131
Estimated dispersion parameters across cells for a given gene.
132-
:param design_loc: np.ndarray, matrix, xarray (cells, #parameters location model)
132+
:param design_loc: np.ndarray, matrix (cells, #parameters location model)
133133
Design matrix of location model.
134-
:param design_scale: np.ndarray, matrix, xarray (cells, #parameters shape model)
134+
:param design_scale: np.ndarray, matrix (cells, #parameters shape model)
135135
Design matrix of shape model.
136136
:param i: int
137137
Index of first dimension in fisher information matrix which is to be computed.
@@ -160,9 +160,9 @@ def hes_nb_glm_bygene(
160160
Estimated mean parameters across cells for a given gene.
161161
:param mu: np.ndarray (cells,)
162162
Estimated dispersion parameters across cells for a given gene.
163-
:param design_loc: np.ndarray, matrix, xarray (cells, #parameters location model)
163+
:param design_loc: np.ndarray, matrix (cells, #parameters location model)
164164
Design matrix of location model.
165-
:param design_scale: np.ndarray, matrix, xarray (cells, #parameters shape model)
165+
:param design_scale: np.ndarray, matrix (cells, #parameters shape model)
166166
Design matrix of shape model.
167167
168168
:return: np.ndarray (#parameters location model + #parameters shape model, #parameters location model + #parameters shape model)
@@ -212,9 +212,9 @@ def theta_covar_bygene(
212212
Estimated mean parameters across cells for a given gene.
213213
:param mu: np.ndarray (cells,)
214214
Estimated dispersion parameters across cells for a given gene.
215-
:param design_loc: np.ndarray, matrix, xarray (cells, #parameters location model)
215+
:param design_loc: np.ndarray, matrix (cells, #parameters location model)
216216
Design matrix of location model.
217-
:param design_scale: np.ndarray, matrix, xarray (cells, #parameters shape model)
217+
:param design_scale: np.ndarray, matrix(cells, #parameters shape model)
218218
Design matrix of shape model.
219219
220220
:return: np.ndarray (#parameters location model + #parameters shape model, #parameters location model + #parameters shape model)
@@ -243,9 +243,9 @@ def theta_sd_bygene(
243243
Estimated mean parameters across cells for a given gene.
244244
:param disp: np.ndarray (cells,)
245245
Estimated dispersion parameters across cells for a given gene.
246-
:param design_loc: np.ndarray, matrix, xarray (cells, #parameters location model)
246+
:param design_loc: np.ndarray, matrix (cells, #parameters location model)
247247
Design matrix of location model.
248-
:param design_scale: np.ndarray, matrix, xarray (cells, #parameters shape model)
248+
:param design_scale: np.ndarray, matrix (cells, #parameters shape model)
249249
Design matrix of shape model.
250250
251251
:return: np.ndarray (#parameters location model + #parameters shape model,)

diffxpy/testing/det.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -581,10 +581,8 @@ def log_fold_change(self, base=np.e, return_type="vector"):
581581
582582
- "dataframe":
583583
return a pandas.DataFrame with columns `gene`, `minuend_<group>`, `subtrahend_<group>` and `logFC`.
584-
- "xarray":
585-
return a xarray.DataArray with dimensions `(minuend, subtrahend, gene)`
586584
587-
:return: either pandas.DataFrame or xarray.DataArray
585+
:return:
588586
"""
589587
factors = set(self.full_design_loc_info.term_names) - set(self.reduced_design_loc_info.term_names)
590588

diffxpy/testing/tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ def wald(
594594
# there is no such column; modify design matrix to create one
595595
design_loc[:, col_indices] = np.where(samples, 1, 0)
596596
elif coef_to_test is not None:
597-
# Directly select coefficients to test from design matrix (xarray):
597+
# Directly select coefficients to test from design matrix:
598598
# Check that coefficients to test are not dependent parameters if constraints are given:
599599
coef_loc_names = glm.data.view_coef_names(design_loc).tolist()
600600
if not np.all([x in coef_loc_names for x in coef_to_test]):

diffxpy/testing/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def design_matrix(
123123
formula: Union[None, str] = None,
124124
as_numeric: Union[List[str], Tuple[str], str] = (),
125125
dmat: Union[pd.DataFrame, None] = None,
126-
return_type: str = "xarray"
126+
return_type: str = "patsy"
127127
) -> Union[patsy.design_info.DesignMatrix, pd.DataFrame]:
128128
""" Create a design matrix from some sample description.
129129

0 commit comments

Comments
 (0)