Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.13",
]
dependencies = [
"plotly>=5.10.0,<6",
"plotly==6.8.0",
"statsmodels>=0.14.0",
"scikit-learn>=1.1.1",
"pandas[parquet]>=1.3.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import pandas as pd
import plotly.figure_factory as ff
import sklearn
from plotly import graph_objs as go
from plotly import graph_objects as go
from plotly.subplots import make_subplots

from evidently.legacy.base_metric import InputData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import numpy as np
import pandas as pd
import plotly.express as px
import plotly.graph_objs as go
import plotly.graph_objects as go
from plotly.subplots import make_subplots

from evidently.legacy.base_metric import InputData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import numpy as np
import pandas as pd
from pandas.api.types import is_numeric_dtype
from plotly import graph_objs as go
from plotly import graph_objects as go

from evidently.legacy.base_metric import InputData
from evidently.legacy.base_metric import Metric
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import numpy as np
import pandas as pd
import plotly.express as px
import plotly.graph_objs as go
import plotly.graph_objects as go
from pandas.api.types import is_integer_dtype
from pandas.api.types import is_string_dtype
from plotly.subplots import make_subplots
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import numpy as np
import pandas as pd
import plotly.express as px
import plotly.graph_objs as go
import plotly.graph_objects as go
from plotly.subplots import make_subplots

from evidently.legacy.base_metric import InputData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import numpy as np
import pandas as pd
from plotly import graph_objs as go
from plotly import graph_objects as go
from plotly.subplots import make_subplots
from scipy.stats import probplot

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from typing import Union

import numpy as np
from plotly import graph_objs as go
from plotly import graph_objects as go
from plotly.subplots import make_subplots

from evidently.legacy.metric_results import Histogram
Expand Down
2 changes: 1 addition & 1 deletion src/evidently/legacy/renderers/html_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import numpy as np
import pandas as pd
from plotly import graph_objs as go
from plotly import graph_objects as go
from plotly.subplots import make_subplots
from uuid6 import uuid7

Expand Down
2 changes: 1 addition & 1 deletion src/evidently/legacy/renderers/render_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Optional

import plotly.graph_objs as go
import plotly.graph_objects as go

from evidently.legacy.metric_results import Distribution
from evidently.legacy.metric_results import HistogramData
Expand Down
2 changes: 1 addition & 1 deletion src/evidently/legacy/tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import numpy as np
import pandas as pd
import plotly.graph_objs as go
import plotly.graph_objects as go
from plotly.subplots import make_subplots

from evidently.legacy.metric_results import Boxes
Expand Down
2 changes: 1 addition & 1 deletion src/evidently/legacy/ui/dashboards/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from typing import Tuple
from typing import Union

from plotly import graph_objs as go
from plotly import graph_objects as go

from evidently.legacy.base_metric import Metric
from evidently.legacy.metric_results import Distribution
Expand Down
2 changes: 1 addition & 1 deletion src/evidently/legacy/ui/dashboards/test_suites.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from typing import Union

import pandas as pd
from plotly import graph_objs as go
from plotly import graph_objects as go

from evidently._pydantic_compat import BaseModel
from evidently.legacy.model.widget import BaseWidgetInfo
Expand Down
2 changes: 1 addition & 1 deletion src/evidently/legacy/utils/visualizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import pandas as pd
from packaging import version
from pandas.api.types import is_datetime64_any_dtype
from plotly import graph_objs as go
from plotly import graph_objects as go
from plotly.subplots import make_subplots
from scipy import stats
from scipy.linalg import LinAlgError
Expand Down