-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from pwwang/dev
Update header for notebooks
- Loading branch information
Showing
158 changed files
with
20,072 additions
and
8,836 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
"""Load operator, provide f and __version__""" | ||
from pipda import Symbolic | ||
|
||
# pylint: disable=unused-import | ||
from .core import operator | ||
|
||
f = Symbolic() # pylint: disable=invalid-name | ||
from .core import operator as _datar_operator | ||
from .core.defaults import f | ||
|
||
__version__ = '0.0.1' | ||
__version__ = '0.0.2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,25 @@ | ||
"""Public APIs from this submodule""" | ||
# pylint: disable=unused-import,redefined-builtin | ||
from .constants import NA, TRUE, FALSE, NULL, pi, Inf, letters, LETTERS | ||
from .verbs import colnames, rownames, dim, nrow, ncol, diag, t | ||
from .constants import ( | ||
NA, TRUE, FALSE, NULL, pi, Inf, letters, LETTERS, | ||
NA_character_, | ||
NA_compex_, | ||
NA_integer_, | ||
NA_real_ | ||
) | ||
from .verbs import ( | ||
colnames, rownames, dim, nrow, ncol, diag, t, names, | ||
intersect, union, setdiff, setequal | ||
) | ||
from .funcs import ( | ||
as_date, as_character, as_double, as_factor, as_categorical, | ||
as_int, as_integer, as_logical, as_bool, table, as_numeric, | ||
c, ceiling, floor, cummax, cummin, cumprod, cumsum, cut, sample, | ||
is_categorical, is_character, is_double, is_factor, is_float, | ||
is_int, is_int64, is_integer, is_na, is_numeric, sum, mean, median, | ||
min, max, as_int64, unique, Im, Re, is_in, is_element, length, | ||
seq_along, seq_len, seq, abs, pmax, pmin, round, sqrt, | ||
droplevels, sin, cos, identity, expandgrid | ||
min, max, as_int64, unique, Im, Re, is_in, is_element, length, lengths, | ||
seq_along, seq_len, seq, abs, pmax, pmin, round, sqrt, rev, | ||
droplevels, levels, sin, cos, identity, expandgrid, all, any | ||
) | ||
# plain functions | ||
from .funcs import factor, rep, context |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.