holgerteichgraeber / TimeSeriesClustering.jl

Julia implementation of unsupervised learning methods for time series datasets. It provides functionality for clustering and aggregating, detecting motifs, and quantifying similarity between time series datasets.
MIT License
82 stars 23 forks source link

"Provide a valid sink argument" error #133

Open jarupas opened 1 year ago

jarupas commented 1 year ago

Screen Shot 2023-02-06 at 11 34 40

Hi, I'm very new to the clustering. I'm trying out the example file and I have "TS_GER_1" downloaded. However, it seems I cannot run the load_timeseries_data function. I'm getting this error.

holgerteichgraeber commented 1 year ago

Hi, thanks for raising this issue. I believe the error is likely connected to the version of underlying packages. When the TimeSeriesClustering package was created, the function inputs to some of the underlying package functions (e.g. CSV.read in this case) were different than the most recent version of these functions. In order to fix this issue, what you can do is to look into the error message, identify the file where this error occurs (in this case src/utils/load_data.jl), and update the function (in this case, update CSV.read to the new way it is used).

holgerteichgraeber commented 1 year ago

Please feel free to submit any changes you make as a Pull Request, we can then incorporate that in the main version of the code.

holgerteichgraeber commented 1 year ago

@jarupas please let me know if you run into any further issues with this.