This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // This uses the wpes-lib framework to build the index: https://github.com/automattic/wpes-lib | |
| class WPOrg_Plugins_Index_Builder extends VIP_Index_Builder { | |
| //override to add support for all analyzers | |
| public function get_settings( $args ) { | |
| $defaults = array( | |
| ); | |
| $args = wp_parse_args( $args, $defaults ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from __future__ import division | |
| import matplotlib.pyplot as plt | |
| import matplotlib.dates as mdates | |
| from pylab import * | |
| import math | |
| from scipy.stats import beta, norm, uniform | |
| from scipy.special import betaln | |
| from random import random, normalvariate | |
| import numpy as np |
OlderNewer