معرفی شرکت ها


SimpleHist-0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Simple histogram classes, designed for data manipulation
ویژگی مقدار
سیستم عامل OS Independent
نام فایل SimpleHist-0.1
نام SimpleHist
نسخه کتابخانه 0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Nicholas Devenish
ایمیل نویسنده n.e.devenish@sussex.ac.uk
آدرس صفحه اصلی https://github.com/ndevenish/simplehistogram
آدرس اینترنتی https://pypi.org/project/SimpleHist/
مجوز Copyright (c) 2011 Nicholas Devenish <n.e.devenish@sussex.ac.uk> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
SimpleHist ========== :Description: A very simple ndarray-based histogram class. :Author: Nicholas Devenish Overview -------- Matplotlib histograms are geared around drawing, not data manipulation. Numpy direct support for histograms is extremely limited, and not very different from matpotlib. This is intended to turn into a set of very lightweight classes for shuffling data around. This is very much a work-in-progress. The only required depenency is numpy, and the package is designed to work for python >= 2.6 Usage ----- A summary of usage, taken from the hists.py docstring follows: Importing: >>> from simplehist import Hist Initialise with bin indices: >>> a = Hist([0, 1, 2, 3]) >>> a.bincount 3 >>> a.bins (0, 1, 2, 3) >>> a.data array([ 0., 0., 0.]) Optionally include data: >>> a = Hist([0, 1, 2, 3], data=[1, 0.2, 3]) >>> a.data array([ 1. , 0.2, 3. ]) Or just specify the blank data type: >>> a = Hist([0, 1, 2, 3], dtype=int) >>> a.data array([0, 0, 0]) You can do arithmetic operations in place or seperately: >>> a = Hist([0, 1, 2, 3], data=[1, 0.2, 3]) >>> b = a + a >>> b -= a >>> a.data == b.data array([ True, True, True], dtype=bool) And you can fill bins from values: >>> a = Hist([0,1,2,3]) >>> a.fill(1.4, weight=3) >>> a.data array([ 0., 3., 0.]) Even out of range: >>> a = Hist([0,1]) >>> a.fill(-10) >>> a.underflow 1.0 If you use pyROOT, you can convert from 1D histograms: >>> type(source) <class 'ROOT.TH1D'> >>> convert = fromTH1(source) >>> type(convert) <class 'simplehist.hists.Hist'> And you can draw histograms, using any of the options that can be passed to matplotlib.pyplot.hist: >>> hist_object.draw_hist(lw=2)


نحوه نصب


نصب پکیج whl SimpleHist-0.1:

    pip install SimpleHist-0.1.whl


نصب پکیج tar.gz SimpleHist-0.1:

    pip install SimpleHist-0.1.tar.gz