Tagged Questions
The frequency-distribution tag has no wiki summary.
13
votes
2answers
373 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:
...
11
votes
2answers
328 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 ...
6
votes
5answers
1k 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 ...
3
votes
3answers
439 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 ...
3
votes
3answers
352 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 ...
3
votes
2answers
1k 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
2answers
475 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 ...
2
votes
1answer
175 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 ...
2
votes
3answers
648 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 ...
1
vote
4answers
203 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 ...
1
vote
1answer
571 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
166 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 ...
0
votes
2answers
546 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 ...
0
votes
1answer
218 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 ...