Does anyone have any wisdom on workflows for data analysis related to custom report writing? The use-case is basically this: Client commissions a report that uses data analysis, e.g....
I’d like to create a query to show the top 6 most read posts over the last two days. However, I’d like to only include posts created within the...
For my blog i want to determine which words are the most used ones over a period of time and from all posts. I was searching for a plugin...
I am looking for a function that takes as input two lists, and returns the Pearson correlation, and the significance of the correlation. 17 Answers 17
How can I find the p-value (significance) of each coefficient? lm = sklearn.linear_model.LinearRegression() lm.fit(x,y) 9 Answers 9
I notice that In [30]: np.mean([1, 2, 3]) Out[30]: 2.0 In [31]: np.average([1, 2, 3]) Out...
What’s the simplest (and hopefully not too slow) way to calculate the median with MySQL? I’ve used AVG(x) for finding the mean, but I’m having a hard time finding...
Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7...
I recently learned that if you have WordPress.com Stats installed, you can take advantage of stats_get_csv() (Part of the WordPress.com Stats Plugin). <?php if ( function_exists('stats_get_csv') && $top_posts =...
I have a client with a private WordPress blog – that is to say, you need to log in to read it. We are using Counterize to keep track...