Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SaQC
Manage
Activity
Members
Labels
Plan
Issues
36
Issue boards
Milestones
Wiki
Code
Merge requests
8
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rdm-software
SaQC
Merge requests
!611
docstring changes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
docstring changes
docs
into
develop
Overview
13
Commits
16
Pipelines
16
Changes
7
All threads resolved!
Hide all comments
Merged
David Schäfer
requested to merge
docs
into
develop
2 years ago
Overview
13
Commits
16
Pipelines
16
Changes
1
All threads resolved!
Hide all comments
Expand
👍
0
👎
0
Merge request reports
Compare
version 7
version 15
4835327e
2 years ago
version 14
913f846f
2 years ago
version 13
b0b2f845
2 years ago
version 12
47b400f1
2 years ago
version 11
5290a5d4
2 years ago
version 10
df52ade6
2 years ago
version 9
5a927dbe
2 years ago
version 8
418d50be
2 years ago
version 7
b6dad532
2 years ago
version 6
0a727656
2 years ago
version 5
c5884cf7
2 years ago
version 4
a0febe97
2 years ago
version 3
df3ebd32
2 years ago
version 2
3edc3308
2 years ago
version 1
8a355bbe
2 years ago
develop (base)
and
version 11
latest version
7a079716
16 commits,
2 years ago
version 15
4835327e
15 commits,
2 years ago
version 14
913f846f
14 commits,
2 years ago
version 13
b0b2f845
13 commits,
2 years ago
version 12
47b400f1
12 commits,
2 years ago
version 11
5290a5d4
11 commits,
2 years ago
version 10
df52ade6
10 commits,
2 years ago
version 9
5a927dbe
9 commits,
2 years ago
version 8
418d50be
8 commits,
2 years ago
version 7
b6dad532
7 commits,
2 years ago
version 6
0a727656
6 commits,
2 years ago
version 5
c5884cf7
5 commits,
2 years ago
version 4
a0febe97
4 commits,
2 years ago
version 3
df3ebd32
3 commits,
2 years ago
version 2
3edc3308
2 commits,
2 years ago
version 1
8a355bbe
1 commit,
2 years ago
Show latest version
1 file
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
saqc/funcs/resampling.py
+
4
−
4
Options
@@ -201,8 +201,8 @@ class ResamplingMixin:
The data will be sampled to regular (equidistant) timestamps.
Sampling intervals therefore get aggregated with a function, specified by
``func``
parameter and
the result
get
s projected
on
to the new timestamps
with a
method, specified by
``method``. The following method
(keywords)
are available:
``func``
,
the result
i
s projected to the new timestamps
using
``method``. The following method
s
are available:
* ``
'
nagg
'
``: all values in the range (+/- `freq`/2) of a grid point get
aggregated with func and assigned to it.
@@ -216,9 +216,9 @@ class ResamplingMixin:
----
For perfomance reasons, ``func`` will be mapped to pandas.resample methods,
if possible. However, for this to work, functions need an initialized
``__name__`` attribute, holding the functions name. Furthermore, you should
``__name__`` attribute, holding the function
'
s name. Furthermore, you should
not pass numpys nan-functions (``nansum``, ``nanmean``,...) because they
cannot be optimised and the handling of ``NaN`` is a
nyhow
taken care of.
cannot be optimised and the handling of ``NaN`` is a
lready
taken care of.
Parameters
----------
Loading