Workflow for statistical analysis and report writing

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. a population estimate and related maps for a water district. The analyst downloads some data, munges the data and saves the result (e.g. adding a column … Read more

Best Apache Log Analyzer Plugin? [closed]

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 years ago. Improve this question What is the best apache log analyzer plugin for WordPress? Requirements: should produce all reports as available in flashstats: http://www.maximized.com/products/flashstats2006/ Im … Read more

Using stats_get_csv to return a list of popular posts by views with thumbnails

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 = stats_get_csv(‘postviews’, ‘days=-1&limit=4′) ) : ?> <ol> <?php foreach ( $top_posts as $p ) : ?> <li><a href=”https://wordpress.stackexchange.com/questions/12189/<?php echo $p[“post_permalink’]; ?>”><?php echo $p[‘post_title’]; ?></a></li> <?php endforeach; ?> … Read more