Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
histogram error
#1
I need to make a histogram of the log10 of a variable r. So I made variable a = np.log10®, and tried to do:

plt.hist(a, fill = False)

it then gave the error " range parameter must be finite."

PLEASE HELP ME!!
thanks so much
Reply
#2
the way you define a, it is the function np,log10, not a value:
>>> import numpy as np
>>> a = np.log10
>>> type(a)
<class 'numpy.ufunc'>
>>>
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to fit a 2D histogram like in ROOT? Zandar 2 4,069 Aug-06-2019, 03:01 PM
Last Post: Zandar
  Plot Probability Density of an Histogram Python_TLS 1 2,853 Jun-28-2018, 06:19 AM
Last Post: scidam
  histogram with matplotlib vaugirard 10 6,156 Jun-01-2018, 04:13 AM
Last Post: vaugirard
  Help creating a histogram using an array rubadub 0 2,160 Apr-17-2018, 08:57 PM
Last Post: rubadub
  Histogram help dandatadan 1 2,513 Nov-25-2017, 06:07 AM
Last Post: heiner55
  mcerp: error while plotting a histogram rakhmadiev 2 4,477 Apr-02-2017, 09:08 PM
Last Post: rakhmadiev
  plotting histogram vvv 1 3,262 Mar-10-2017, 11:47 PM
Last Post: zivoni

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020