Tagged Questions
1
vote
1answer
37 views
how to plot joint distribtuion of 2 random variable having 1000 data
here is the code i wrote to generate probability distribtuion of two random variable. now i would like to plot JPD.
clear all;
clc;
x1 = randn(1000,1);
x2 = 10*randn(1000,1);
[count_1, b] = ...
0
votes
1answer
157 views
How to create a joint probability table from existing conditioinal probability tables? (CPTs)
I have the following tables ,with the dependencies below :
And I want to create the joint-probability table for P(M,P,W,B) , which looks like this (and of course ,you can assume that the below ...
0
votes
1answer
214 views
How does Laplace Smoothing Effect Prior / Evidence
I have a probability / stats question related to implementing Naive Bayes Classifiers, in particular about implementing Laplace Smoothing to avoid the Zero count issue and overfitting.
From what Ive ...
0
votes
2answers
86 views
Python list reordering, remember original order?
I'm working on a Bayesian probability project, in which I need to adjust probabilities based on new information. I have yet to find an efficient way to do this. What I'm trying to do is start with an ...
0
votes
1answer
90 views
Conditionally Independent coins
I have been thinking of this problem for some time now,I came across this in one of the lectures of Probabilistic graphical Model.https://class.coursera.org/pgm/lecture/preview
Question is pretty ...
3
votes
1answer
370 views
naive classifier matlab
When testing the naive classifier in matlab I get different results even though I trained and tested on the same sample data, I was wondering if my code is correct and if someone could help explain ...
1
vote
0answers
515 views
Probabilities computation for Naïve Bayes classifier under Weka
I want to understand how the Naive Bayes classifier works with text classification, in particular, how is the calculation of probabilities?
Class
Attribute ...
4
votes
1answer
673 views
Using a Naive Bayes Classifier to classify tweets: some problems
Using, amongst other sources, various posts here on Stackoverflow, I'm trying to implement my own PHP classier to classify tweets into a positive, neutral and negative class. Before coding, I need to ...
0
votes
0answers
92 views
P(A1…An|C) formula expansion [closed]
I know that the P(A1...An|C) = P(A1|C) * P(A2|C,A1)*.....*P(An|C,A1,..,An-1)
However, what is the name of this above rule. Is this bayes theorem ? Please give a link to the source too
0
votes
0answers
112 views
Understanding conditional probabilities in bayes classifiers in the wikipedia page example [closed]
I'm using the wikipedia page example:
http://en.wikipedia.org/w/index.php?title=Naive_Bayes_classifier&oldid=453953061
Why is P(height | male) = 1.5789? This means the probability of height given ...
2
votes
1answer
1k views
Log likelihood to implement Naive Bayes for Text Classification
I am implementing Naive Bayes algorithm for text classification. I have ~1000 documents for training and 400 documents for testing. I think I've implemented training part correctly, but I am confused ...
3
votes
3answers
353 views
Calculating spam probability
I am building a website in python/django and want to predict wether a user submission is valid or wether it is spam.
Users have an accept rate on their submissions, like this website has.
Users can ...
0
votes
3answers
1k views
How do I solve this conditional probabilities problem with MATLAB?
If P( cj | xi ) are already known, where i=1,2,...n; j=1,2,...k;
How do I calculate/estimate:
P( cj | xl , xm , xn ), where j=1,2,...k; l,m,n {1,2,...n} ?
8
votes
3answers
233 views
Way to infer the size of the userbase of a site from sampling taken usernames
I just had a clever idea (I think).
Suppose you wanted to estimate the size of a userbase of a site which does not publicize this information.
People are more likely to have acquired different ...
18
votes
5answers
8k views
probability interview question, random sampling
This is a good one because it's so counter-intuitive:
Imagine an urn filled with balls, two-thirds of which are of one color and one-third of which are of another. One individual has drawn 5 balls ...