python Programming Glossary: outliers
Stack performance in programming languages http://stackoverflow.com/questions/4121790/stack-performance-in-programming-languages You should run each program ten times remove the outliers fastest and slowest then average the other eight. In addition.. worth those C timings above were for seven runs with the outliers taken out before averaging. In fact this question shows how..
Is it possible to specify your own distance function using Scikits.Learn K-Means Clustering? http://stackoverflow.com/questions/5529625/is-it-possible-to-specify-your-own-distance-function-using-scikits-learn-k-means any metric euclidean2 ~ withinss is more sensitive to outliers cityblock manhattan L1 less sensitive D cdist X centres metric..
Python/Matplotlib - Is there a way to make a discontinuous axis? http://stackoverflow.com/questions/5656798/python-matplotlib-is-there-a-way-to-make-a-discontinuous-axis ax.set_xlim 0 1 # most of the data ax2.set_xlim 9 10 # outliers only # hide the spines between ax and ax2 ax.spines 'right'.. ax.set_xlim 0 1 # most of the data ax2.set_xlim 9 10 # outliers only # hide the spines between ax and ax2 ax.spines 'right'..
Possible to make labels appear when hovering over a point in matplotlib? http://stackoverflow.com/questions/7908636/possible-to-make-labels-appear-when-hovering-over-a-point-in-matplotlib to be able to quickly see the names of the points that are outliers. The closest thing I have been able to find while searching..
scipy.interpolate.UnivariateSpline not smoothing regardless of parameters http://stackoverflow.com/questions/8719754/scipy-interpolate-univariatespline-not-smoothing-regardless-of-parameters the number of data points. In particular I'm looking for outliers like that 4th point 7990.4664106277542 5851.6866463790966 to..
|