How to find periodic interval and periodic mean through Von mises distribution?
问题 I have some data of time (hours of the day). I would like to fit a von mises distribution to this data, and find the periodic mean. How do I do this using scipy in python ? for example : from scipy.stats import vonmises data = [1, 2, 22, 23] A = vonmises.fit(data) I am not sure how do I get the distribution (interval probably) and periodic mean of this data using fit or mean or interval methods. 回答1: Good job on finding the VM distribution. That's half of the battle. But unless I'm mistaken