Skip to content

Commit c9a3d97

Browse files
committed
sync folders
1 parent 48e772f commit c9a3d97

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

clarite/modules/analyze/association_study.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
from typing import Optional, Union, Type, List
1+
from typing import List, Optional, Type, Union
22

33
import click
44
import pandas as pd
55

66
from clarite.modules.analyze import regression
77
from clarite.modules.analyze.regression import (
8-
builtin_regression_kinds,
9-
WeightedGLMRegression,
108
GLMRegression,
9+
WeightedGLMRegression,
10+
builtin_regression_kinds,
1111
)
1212

1313

@@ -103,6 +103,8 @@ def association_study(
103103
outcome_variable=outcome,
104104
regression_variables=regression_variables,
105105
covariates=covariates,
106+
encoding=encoding,
107+
edge_encoding_info=edge_encoding_info,
106108
**kwargs,
107109
)
108110
print(regression)

clarite/modules/plot/histogram.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from typing import Optional, Tuple
22

3-
43
import matplotlib.pyplot as plt
54
import seaborn as sns
65

clarite/modules/plot/top_results.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from typing import Optional, Tuple
22

33
import matplotlib.pyplot as plt
4-
from matplotlib.lines import Line2D
5-
import seaborn as sns
64
import pandas as pd
5+
import seaborn as sns
6+
from matplotlib.lines import Line2D
77

88

99
def top_results(

0 commit comments

Comments
 (0)