I have a dataset with longitude, latitude and timestamp. I want to use hierarchical clustering to cluster points that are within x miles and t duration. I understand I can use hclust and dbscan function but all of these take only one argument. Moreover, some of my points might not be in a cluster so I guess I cant use st_dbscan.
Can anyone direct me on what function/package/argument I can use for this purpose?
I think you want KMeans Clustering.
data source:
https://www.kaggle.com/c/zillow-prize-1/data
https://www.kaggle.com/xxing9703/kmean-clustering-of-latitude-and-longitude?select=zillow_data_dictionary.xlsx
Also...
https://www.analyticsvidhya.com/blog/2019/05/beginners-guide-hierarchical-clustering/
https://levelup.gitconnected.com/clustering-gps-co-ordinates-forming-regions-4f50caa7e4a1