Skip to content

Chapter 4: error about sorting posteriors of reddit submissions #574

Open
@fralc

Description

@fralc

this code doesn't produce the 5% quantile:

v = np.sort( posteriors[i] )[ int(0.05*N) ]

this would do it:

v = np.sort( posteriors[i] , axis=0)[ int(0.05*N) ]

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @fralc

        Issue actions

          Chapter 4: error about sorting posteriors of reddit submissions · Issue #574 · CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers