Skip to content
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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

ENH: Add ability to append to a model #674

wants to merge 2 commits into from

Conversation

bashtage
Copy link
Owner

No description provided.

@codecov
Copy link

codecov bot commented Jul 12, 2023

Codecov Report

Patch coverage: 18.91% and project coverage change: -0.20 ⚠️

Comparison is base (98a2bfa) 99.43% compared to head (478d0f6) 99.24%.

❗ Current head 478d0f6 differs from pull request most recent head 4cd013d. Consider uploading reports for the commit 4cd013d to get more accurate results

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              
Impacted Files Coverage Δ
arch/utility/array.py 92.54% <16.66%> (-6.13%) ⬇️
arch/univariate/mean.py 96.57% <17.64%> (-1.89%) ⬇️
arch/univariate/base.py 98.17% <25.00%> (-0.78%) ⬇️

☔ View full report in Codecov by Sentry.
📢 Do you have feedback about the report comment? Let us know in this issue.

@@ -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 Note

Import of 'pd' is not used.
@@ -0,0 +1,167 @@
import datetime as dt

Check notice

Code scanning / CodeQL

Unused import Note

Import of 'dt' is not used.
@@ -0,0 +1,167 @@
import datetime as dt
from functools import partial

Check notice

Code scanning / CodeQL

Unused import Note

Import of 'partial' is not used.
@@ -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' Note

Module 'pandas' is imported with both 'import' and 'import from'.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant