Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7773611
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T17:10:17+00:00 2026-06-01T17:10:17+00:00

I am trying to get a bincount of a numpy array which is of

  • 0

I am trying to get a bincount of a numpy array which is of the float type:

w = np.array([0.1, 0.2, 0.1, 0.3, 0.5])
print np.bincount(w)

How can you use bincount() with float values and not int?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T17:10:17+00:00Added an answer on June 1, 2026 at 5:10 pm

    You want something like this?

    >>> from collections import Counter
    >>> w = np.array([0.1, 0.2, 0.1, 0.3, 0.5])
    >>> c = Counter(w)
    
    Counter({0.10000000000000001: 2, 0.5: 1, 0.29999999999999999: 1, 0.20000000000000001: 1})
    

    or, more nicely output:

    Counter({0.1: 2, 0.5: 1, 0.3: 1, 0.2: 1})
    

    You can then sort it and get your values:

    >>> np.array([v for k,v in sorted(c.iteritems())])
    
    array([2, 1, 1, 1])
    

    The output of bincount wouldn’t make sense with floats:

    >>> np.bincount([10,11])
    array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1])
    

    as there is no defined sequence of floats.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to get children of a given document type, with umbracoNavihide not set to
I'm trying get values from a GridView using the following code: foreach (GridViewRow row
I am trying get content from the link https://....com:8455 where Server's certificate is not
Trying to get these list headings to line up correctly, but I can't figure
I'm trying get a subset of keys for each hash in an array. The
I am trying get type of property of my class by using of reflection
Well, I'm trying get some values from places.sqlite database. But when I do $
I am trying get the values using SP.The query is below. create proc [dbo].[GetOrdersByUserID11]
I am trying get my head around how you can run the following php:
I am trying get Javascript popup calendar control to work which doesnt work. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.