You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
341 B
10 lines
341 B
6 years ago
|
import pandas as pd
|
||
|
|
||
|
from common import timestamp_to_index
|
||
|
|
||
|
def parse_segment(segment, dataframe):
|
||
|
start = timestamp_to_index(dataframe, pd.to_datetime(segment['from'], unit='ms'))
|
||
|
end = timestamp_to_index(dataframe, pd.to_datetime(segment['to'], unit='ms'))
|
||
|
data = dataframe['value'][start: end + 1]
|
||
|
return start, end, data
|