-
Notifications
You must be signed in to change notification settings - Fork 249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENH: Add ability to append to a model #674
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #674 +/- ##
==========================================
- Coverage 99.43% 99.24% -0.20%
==========================================
Files 74 74
Lines 15509 15544 +35
Branches 2086 2095 +9
==========================================
+ Hits 15422 15427 +5
- Misses 63 93 +30
Partials 24 24
☔ View full report in Codecov by Sentry. |
@@ -12,7 +12,17 @@ | |||
from typing import Any, Literal, overload | |||
|
|||
import numpy as np | |||
from pandas import DataFrame, DatetimeIndex, Index, NaT, Series, Timestamp, to_datetime | |||
import pandas as pd |
Check notice
Code scanning / CodeQL
Unused import
@@ -0,0 +1,167 @@ | |||
import datetime as dt |
Check notice
Code scanning / CodeQL
Unused import
@@ -0,0 +1,167 @@ | |||
import datetime as dt | |||
from functools import partial |
Check notice
Code scanning / CodeQL
Unused import
@@ -12,7 +12,17 @@ | |||
from typing import Any, Literal, overload | |||
|
|||
import numpy as np | |||
from pandas import DataFrame, DatetimeIndex, Index, NaT, Series, Timestamp, to_datetime | |||
import pandas as pd |
Check notice
Code scanning / CodeQL
Module is imported with 'import' and 'import from'
No description provided.