Skip to content

Commit aad672a

Browse files
Update latest dependencies
1 parent 36c7695 commit aad672a

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

latest_requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
copulas==0.12.3
2-
numpy==2.3.4
2+
numpy==2.3.5
33
pandas==2.3.3
4-
plotly==6.3.1
5-
scikit-learn==1.7.2
4+
plotly==6.5.0
5+
scikit-learn==1.8.0
66
scipy==1.16.3
77
tqdm==4.67.1

sdmetrics/visualization.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -843,12 +843,14 @@ def get_column_line_plot(real_data, synthetic_data, column_name, metadata):
843843
x_axis = metadata['sequence_index']
844844
if 'sequence_key' in metadata:
845845
r_data = (
846-
r_data.groupby(x_axis, as_index=False)
846+
r_data
847+
.groupby(x_axis, as_index=False)
847848
.agg({x_axis: 'first', column_name: ['mean', 'min', 'max']})
848849
.rename(columns={'mean': column_name, 'first': x_axis})
849850
)
850851
s_data = (
851-
s_data.groupby(x_axis, as_index=False)
852+
s_data
853+
.groupby(x_axis, as_index=False)
852854
.agg({x_axis: 'first', column_name: ['mean', 'min', 'max']})
853855
.rename(columns={'mean': column_name, 'first': x_axis})
854856
)

0 commit comments

Comments
 (0)