1#    Copyright 2015-2017 ARM Limited
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15
16"""Config Parameters for the Statistics Framework"""
17
18# Default interval between a uniform time series
19DELTA_DEFAULT = 0.000025
20"""The default delta for uniformly resampled data"""
21GRAMMAR_DEFAULT_PIVOT = "NO_PIVOT"
22"""Default pivot value for :mod:`trappy.stats.grammar`"""
23REINDEX_METHOD_DEFAULT = "pad"
24"""Default method for reindexing and filling up NaNs"""
25REINDEX_LIMIT_DEFAULT = None
26"""Number or indices a value will be propagated forward when reindexing"""
27NAN_FILL_DEFAULT = True
28"""Fill NaN values by default"""
29