Skip to content
Discussion options

You must be logged in to vote
 def osti(self,path):
        #Reading the data from the file
        
        
        df = pd.read_csv(path)
        
        data = np.array(df.iloc[:,0])      
        window_size = input('Enter the window size?\n')
    # using ostinato function in for patterns discovery in stump
        rad, TS_idx, Sub_idx = stumpy.ostinato(data ,int(window_size))
        print(rad)
        print(TS_idx)
        

and the data is 1d time series

[-0.3288759  -0.32424527 -0.3199583  ... -0.00456399 -0.01842756
 -0.03370683] <class 'numpy.ndarray'>

Replies: 2 comments 6 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
6 replies
@seanlaw
Comment options

@seanlaw
Comment options

@adityabhandwalkar
Comment options

@seanlaw
Comment options

@adityabhandwalkar
Comment options

Answer selected by adityabhandwalkar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants