Tagged Questions
1
vote
1answer
35 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] = ...
2
votes
4answers
298 views
Anyone can tell me why we always use the gaussian distribution in Machine learning?
For example, we always assumed that the data or signal error is a Gaussian distribution? why?
0
votes
1answer
83 views
Odd Results using Bayesian Averaging
I am using the following code to come up with a Bayesian average for my product reviews:
@bayesian = (((Review.count * Review.average(:score)) + (style.reviews.count ...
4
votes
1answer
665 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
1answer
324 views
cyclic bayesian network
i have several elements A,B,C,AB,ABC,.. (see image below) where each element either exists or not. the rule that governs this system is as follows: if AB exists, then A and B must also exist. ...
0
votes
2answers
127 views
how to predict quality of data?
I'm very sorry if I'm wording this wrong in advance but I have a large dataset and I am trying to analyze it, but most of the data is not correct and need some help figuring out how to select the ...
1
vote
3answers
1k views
Naive Bayesian classification (spam filtering) - Which calculation is right?
I am implementing Naive Bayesian classifier for spam filtering. I have doubt on some calculation. Please clarify me what to do. Here is my question.
In this method, you have to calculate
P(S|W) ...
4
votes
5answers
716 views
naive bayesian spam filter question
I am planning to implement spam filter using Naive Bayesian classification model.
Online I see a lot of info on Naive Bayesian classification, but the problem is its a lot of mathematical stuff, ...
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 ...
4
votes
1answer
913 views
Is there an R package for learning a Dirichlet prior from counts data
I'm looking for a an R package which can be used to train a Dirichlet prior from counts data. I'm asking for a colleague who's using R, and don't use it myself, so I'm not too sure how to look for ...