def SparselyProfileErr(binWidth, binnedQuantity, averagedQuantity, selection=unweighted, origin=0.0): """Convenience function for creating a physicist's sparsely binned "profile plot," which is a Profile with variances.""" return Select.ing( selection, SparselyBin.ing(binWidth, binnedQuantity, Deviate.ing(averagedQuantity), Count.ing(), origin))
def ProfileErr(num, low, high, binnedQuantity, averagedQuantity, selection=unweighted): """Convenience function for creating a physicist's "profile plot," which is a Profile with variances.""" return Select.ing( selection, Bin.ing(num, low, high, binnedQuantity, Deviate.ing(averagedQuantity)))
def ProfileErr(num, low, high, binnedQuantity, averagedQuantity): """Convenience function for creating a profile plot This is a Profile with variances. """ return Bin.ing(num, low, high, binnedQuantity, Deviate.ing(averagedQuantity))
def SparselyProfileErr(binWidth, binnedQuantity, averagedQuantity, origin=0.0): """Convenience function for creating a sparsely binned profile plot This is a Profile with variances. """ return SparselyBin.ing(binWidth, binnedQuantity, Deviate.ing(averagedQuantity), Count.ing(), origin)
def SparselyProfileErr(binWidth, binnedQuantity, averagedQuantity, selection=unweighted, origin=0.0): """Convenience function for creating a physicist's sparsely binned "profile plot," which is a Profile with variances.""" return Select.ing(selection, SparselyBin.ing(binWidth, binnedQuantity, Deviate.ing(averagedQuantity), Count.ing(), origin))
def ProfileErr(num, low, high, binnedQuantity, averagedQuantity, selection=unweighted): """Convenience function for creating a physicist's "profile plot," which is a Profile with variances.""" return Select.ing(selection, Bin.ing(num, low, high, binnedQuantity, Deviate.ing(averagedQuantity)))