blob: cbc97c66a6a38d73473ad1cd62320b386db2270a [file] [log] [blame]
{
"name": "Statistics",
"version": "1.1",
"summary": "A stab at a very simple statistics class for Objective-C",
"description": " Statistics is a Foundation framework for calculating—no points for guessing\n it—statistics. It is inspired by Perl's Statistics::Descriptive and like it\n consists of two main classes.\n\n SBStatistics calculates a range of statistical measurements on the fly as\n each data point is added. The data is then immediately discarded, giving it\n a very low memory footprint.\n\n SBFullStatistics in turn subclasses SBStatistics and records each data\n point. It is therefore able to provide more advanced statistical functions.\n The trade-off is that it can consume a lot of memory if you are collecting a\n lot of data.\n",
"homepage": "https://github.com/stig/Statistics",
"license": {
"type": "BSD",
"text": " Copyright (c) 2008-2014, Stig Brautaset. All rights reserved.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the author nor the names of its contributors may be used\n to endorse or promote products derived from this software without specific\n prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
},
"authors": {
"Stig Brautaset": "stig@brautaset.org"
},
"social_media_url": "http://twitter.com/stigbra",
"requires_arc": true,
"platforms": {
"ios": "5.0",
"osx": "10.7"
},
"source": {
"git": "https://github.com/stig/Statistics.git",
"tag": "1.1"
},
"source_files": "Classes/*.{h,m}"
}