time-series Questions

2

Solved

I like to interpolate a time series, so that the timestamp is exact 0.1 Hz. So the first step maybe would be something like library(tidyverse) library(zoo) options(digits.secs = 3, pillar.sigfig ...
Osteoma asked 18/9 at 14:26

3

I would like to find (in python) the local minimum and maximum values in OHLC data, under the condition that the distance between these values is at least +-5%. Temporal Condition Note that for an...
Rehnberg asked 6/7, 2023 at 13:20

2

Solved

I have a count time series data which I'm able to use to determine the parameters of the underlying stochastic process. For example say I have a SARIMA (p,d,q)(P,D,Q)[S] seasonal ARIMA model. How ...
Synthetic asked 4/8, 2011 at 20:59

3

Solved

I am trying to do out of sample forecasting using python statsmodels. I do not want to just forecast the next x number of values from the end of the training set but I want to forecast one value at...
Cinelli asked 11/11, 2015 at 23:25

9

Are there any lossless compression methods that can be applied to floating point time-series data, and will significantly outperform, say, writing the data as binary into a file and running it thro...
Numbersnumbfish asked 25/12, 2011 at 17:18

3

I have few weeks data with units sold given xs[weeks] = [1,2,3,4] ys['Units Sold'] = [1043,6582,5452,7571] from the given series, we can see that although there is a drop from xs[2] to xs[3] but o...
Eller asked 12/4, 2019 at 10:13

5

I have a timestamp column where the timestamp is in the following format 2016-06-16T21:35:17.098+01:00 I want to extract date and time from it. I have done the following: import datetime as dt ...
Melanite asked 23/9, 2016 at 13:33

5

Solved

I have a Pandas DataFrame containing the date that a stream gage started measuring flow and the date that the station was decommissioned. I want to generate a plot showing these dates graphically. ...
Medicate asked 4/8, 2015 at 22:38

3

My question is different ways to connect mongodb with grafana Link for reference ?
Depurative asked 11/9, 2017 at 11:0

4

Solved

I have identified one pandas command timeseries.loc[z, x] = y to be responsible for most of the time spent in an iteration. And now I am looking for better approaches to accelerate it. The loop...
Nonmaterial asked 10/6, 2016 at 22:14

41

Solved

I am analyzing the following data: Raw data (seperated with spaces): 1 1 1.1 1 0.9 1 1 1.1 1 0.9 1 1.1 1 1 0.9 1 1 1.1 1 1 1 1 1.1 0.9 1 1.1 1 1 0.9 1 1.1 1 1 1.1 1 0.8 0.9 1 1.2 0.9 1 1 1.1 1.2 1...

3

im trying to temporal fusion transformer from pytorch_forecasting module but im getting the error in trainer.fit method:model must be a LightningModule or torch._dynamo.OptimizedModule, got Tempora...
Ramer asked 13/4, 2023 at 7:51

20

Solved

There seems to be no function that simply calculates the moving average on numpy/scipy, leading to convoluted solutions. My question is two-fold: What's the easiest way to (correctly) implement ...

2

Solved

I want to parse the time from a column of a sub second precision timeseries .csv file but it returns NaT for some timestamps. A quirk of the dataset is, that every non-full second will be represent...
Capillarity asked 22/2 at 11:20

3

Solved

Suppose I wish to re-index, with linear interpolation, a time series to a pre-defined index, where none of the index values are shared between old and new index. For example # index is all precise...
Blubberhead asked 8/10, 2018 at 11:31

3

I have been working on a project for estimating the traffic flow using time series data combine with weather data. I am using a window of 30 values for my time series and I am using 20 weather rela...
Sippet asked 20/3, 2021 at 4:48

9

I'm working on a multivariate (100+ variables) multi-step (t1 to t30) forecasting problem where the time series frequency is every 1 minute. The problem requires to forecast one of the 100+ variabl...

5

Solved

I've got a pandas DataFrame that looks like this: sum 1948 NaN 1949 NaN 1950 5 1951 3 1952 NaN 1953 4 1954 8 1955 NaN and I would like to cut off the NaNs at the beginning and at the end ONLY (...
Choli asked 20/7, 2015 at 6:55

2

Solved

Have been working with time series in Python, and using sm.tsa.seasonal_decompose. In the docs they introduce the function like this: We added a naive seasonal decomposition tool in the same vei...
Vinnie asked 2/11, 2017 at 13:39

3

Solved

How do I use strptime or any other functions to parse time stamps with milliseconds in R? time <- "2010-01-15 13:55:23.975" print(time) # [1] "2010-01-15 13:55:23.975" strpti...
Fineman asked 27/1, 2010 at 20:48

7

I have data in an hourly values. SNo Date Hour X 1 2006-12-17 00:00:00 1.8824667 2 2006-12-17 01:00:00 3.3494000 3 2006-12-17 02:00:00 1.5872667 4 2006-12-17 03:00:00 1.6622000 5 2006-12-17 04:00:...
Liquefacient asked 18/11, 2015 at 14:8

2

ERROR: Could not find a version that satisfies the requirement httpstan<4.5,>=4.4 (from pystan>=2.14->fbprophet) (from versions: 0.1.0, 0.1.1, 0.2.3, 0.2.5, 0.3.0, 0.3.1, 0.4.0, 0.5.0, ...
Peritonitis asked 6/4, 2021 at 5:29

6

Solved

I am looking for efficient ways to remove outliers in my data. I have tried several solutions that I found here on Stack Overflow and elsewhere but none of them worked for me (4 high values of 2163...
Service asked 5/10, 2023 at 22:28

6

Solved

I would like calculate the Hurst exponent with R. Is there a library or built in function that can do this? any suggestion will be appreciated (even weblinks to references). update: thanks to the c...
Abbreviation asked 24/2, 2012 at 15:10

9

Solved

I have some problems executing an additive model right. I have the following data frame: And when I run this code: import statsmodels as sm import statsmodels.api as sm decomposition = sm.tsa.seas...
Bridgeboard asked 1/2, 2020 at 12:53

© 2022 - 2024 — McMap. All rights reserved.