A frequency distribution is an arrangement of the values that one or more variables take in a sample
0
votes
0answers
14 views
Detecting segments of consecutive equal(/similar) local density in sparse array
Let's say I have a sparse vector with values at the following indexes:
[0, 1, 3, 4, 6, 7, 8, 15, 21, 26, 33, 38, 48, 60, 73, 83, 85, 88, 90, 91, 191, 311, 401, 513, 533, 557, 580, 582, 583, 585, 587, ...
0
votes
1answer
57 views
R: weird y-axis in frequency/density plot (ggplot2)
I have data from two samples and I want to plot a frequency distribution plot in R. I have the reference done in Excel:
I uploaded in R the data (HistSerp). It's 136 obs. of 2 variables.
...
-5
votes
2answers
126 views
Frequency distribution in R
I have five columns with numbers. I want to plot the frequency distribution of five columns in one graph with different colors in R. Can some one help me out how i can do this with an example. I am ...
1
vote
1answer
44 views
SAS: relating variables
I'm very new to both SAS and statistical analysis in general. I have a degree in computer science and I'm taking an online course in statistics and am confused on how to achieve what I want in SAS. I ...
0
votes
1answer
65 views
Ranked Frequency Distributions from Nominal Variables in R
I have searched through the website but have been unable to find a solution to my problem. I have a sample dataset as follows:
id,l1
1,3
2,5
3,6
1,5
2,4
3,6
id is a nominal variable and represents ...
0
votes
2answers
133 views
WinBUGS - Defining a stepwise uniform distribution
I want to define a distribution in my model of the form: P(x=10)=0.10, P(x=15)=0.20, P(x=20)=0.70
The WinBUGS FAQ says it is possible construct my own discrete uniform distribution as a categorical ...
1
vote
2answers
136 views
R identifying type of frequency distribution
I am interested in frequency distributions that are not normally distributed.
If I have a frequency distributions table which is not normally distributed.
Is there a function or package that will ...
2
votes
1answer
217 views
Median of a frequency distribution
I want to calculate the median of a frequency distribution for a large number of samples. Each of the samples have a number of classes (3 in the example) and their respective frequencies. Each of the ...
0
votes
1answer
121 views
about creating frequency distribution against large inputs
Recently I need to create a histogram which shows frequency distribution of a large data set. This should be a simple job if the data set is small. However, the data set I need to plot contains about ...
0
votes
1answer
256 views
Draw a frequency plot in d3 with JSON data
I am doing a project in d3 and am at my wits' end on how to draw a frequency graph for graphing tweets. So, basically, I have a JSON file whose format is like this
{
"text": "some text here",
...
0
votes
2answers
187 views
Fit 1000 samples to a normal distribution using Maximum-Likelihood in C++
I have a sample of 5000 doubles like
sample = {1.23, -4.67, 0.17, 1.25, 6.89, -2.03, ...}
and want to fit the data to a parametric distributions like N(mu, sigma) or generalized student t(loc, ...
1
vote
1answer
88 views
Applying functions from histograms - in R
I have a very basic grasp of stats, and a very basic grasp of R so please bear with me.
I have survey data which shows the weekly expenditure of a number of respondents. I have put this into a ...
2
votes
3answers
192 views
How to compute letter frequency in a string using pythons built-in map and reduce functions
I would like to compute the frequency of letters in a string using pythons map and reduce built-in functions. Could anyone offer some insight into how I might do this?
What I've got so far:
s = "the ...
1
vote
2answers
294 views
Scaled/weighted density plot in R
I want to generate a density plot of observed temperatures that is scaled by the number of events observed for each temperature data point. My data contains two columns: Temperature and Number [of ...
0
votes
1answer
384 views
R compute percentage values in data frame
My question today refers to a data frame I'm working on in R.
The header of the data frame looks like the following: String(unique), Integer N[0-23]
Those 24 Integer values represent the frequency ...
2
votes
1answer
398 views
Efficient way to get frequency distribution of values in a large MySql table
I have two tables viz. Total_Data and Distinct_S1.
Total_Data has 3.5 million rows. Fields: "S1", "S2", "S3", "S4"
Distinct_S1 has 1 million rows. Fields: "S1", "frequency".
"S1" of Distinct_S1 ...
1
vote
1answer
1k views
Frequency of elements in matrix - Matlab
From a function that i run in matlab i get a 225x400 matrix. I want to count the frequency of each element in this matrix, meaning that i need to calculate how many times each elements appears on the ...
0
votes
1answer
92 views
How do I efficiently process db queries for freq dist computation?
I've been working on this for a bit of time now, trying to create a frequency distribution database side:
from itertools import permutations
import sqlite3
def ...
2
votes
2answers
390 views
Python NLTK FreqDist() Reduce Memory Usage By Writing k,v to disk?
I have a small program that uses NLTK to get the frequency distribution of a rather large dataset. The problem is that after a few million words I start to eat up all the RAM on my system. Here's what ...
3
votes
1answer
67 views
Coding an interface where user selects date reoccurnace
I need to create an interface where a user needs to select how many times his magizine/newspaper gets distributed. Some magazines/newspapers get distributed
Several times a week.
Several times a a ...
2
votes
1answer
863 views
Python Frequency Distribution (FreqDist / NLTK) Issue
I'm attempting to break a list of words (a tokenized string) into each possible substring. I'd then like to run a FreqDist on each substring, to find the most common substring. The first part works ...
1
vote
1answer
1k views
Frequency and cumulative frequency curve on the same graph in R
Is there a way (in R with ggplot or otherwise) to draw frequency and cumulative frequency curves in a single column (two rows) i.e. one top of the other such that a given quartile can be shown on both ...
1
vote
2answers
173 views
Extracting time at which frequencies occur
I take a song sample and perform the FFT (fast Fourier transformation) on the sample. I am able to get the frequencies of the song, but I am not able to get the time at which those frequencies occur. ...
11
votes
2answers
1k views
What is the fastest way to calculate frequency distribution for array in C#?
I am just wondering what is the best approach for that calculation. Let's assume I have an input array of values and array of boundaries - I wanted to calculate/bucketize frequency distribution for ...
2
votes
2answers
2k views
FreqDist using NLTK
I'm trying to get a frequency distribution of a set of documents using Python. My code isn't working for some reason and is producing this error:
Traceback (most recent call last):
File ...
3
votes
3answers
4k views
Optimal way to create a histogram/frequency distribution in Oracle?
I have an events table with two columns eventkey (unique, primary-key) and createtime, which stores the creation time of the event as the number of milliseconds since Jan 1 1970 in a NUMBER column.
I ...
1
vote
4answers
895 views
What is the command for Zipf (frequency against rank) plot in R
I have from a network traffic data, data volume (# of bytes) and # of flows over a week period for origin and destination IP pair. I want to plot distribution, i.e. frequency against rank.
I believe ...
5
votes
1answer
7k views
Get a histogram plot of factor frequencies (summary)
I've got a factor with many different values. If you execute summary(factor) the output is a list of the different values and their frequency. Like so:
A B C D
3 3 1 5
I'd like to make a histogram ...
0
votes
1answer
520 views
How can I plot the mean of sliding groups of data in R?
I have a frequency distribution I am trying to plot in R. The dataset is quite noisy however and results in an untidy plot.
I would like to take the mean of 10 unit sliding windows and plot that data ...
8
votes
6answers
7k views
How to generate distributions given, mean, SD, skew and kurtosis in R?
Is it possible to generate distributions in R for which the Mean, SD, skew and kurtosis are known? So far it appears the best route would be to create random numbers and transform them accordingly.
If ...
0
votes
2answers
2k views
Sum up the number of words frequency using FreqDist, python
How to sum up the number of words frequency using fd.items() from FreqDist?
>>> fd = FreqDist(text)
>>> most_freq_w = fd.keys()[:10] #gives me the most 10 frequent words in the ...
13
votes
2answers
498 views
Determine “wiggliness” of set of data - Python
I'm working on a piece of software which needs to implement the wiggliness of a set of data. Here's a sample of the input I would receive, merged with the lightness plot of each vertical pixel strip:
...
3
votes
3answers
610 views
Cryptography. English “normal text”?
I was asked to make a software that will encrypt and decrypt a "normal English" text based on letter frequencies.
The question is where do I find some text samples where the official frequencies will ...
2
votes
1answer
362 views
SQL query: How to count frequency over a many-to-many relation?
I have a table for blogposts and a table for tags, with a many-to-many relation between them.
How can I extract the most frequent tag across a subset of blogposts? (e.g. only those from the past ...
0
votes
1answer
431 views
Network drive indexing frequency
The company I work for have millions of documents that are stored and shared on multiple network drives mapped to users' drives (e.g.] d:\ to \server1\, etc).
What I'd like to implement is to crawl ...
3
votes
2answers
6k views
MATLAB : frequency distribution
I have raw observations of 500 numeric values (ranging from 1 to 25000) in a text file, I wish to make a frequency distribution in MATLAB. I did try the histogram (hist), however I would prefer a ...
2
votes
3answers
1k views
Calculating frequency distribution of a collection with .Net/C#
Is there a fast/simple way to calculate the frequency distribution of a .Net collection using Linq or otherwise?
For example: An arbitrarily long List contains many repetitions. What's a clever way ...

