Tagged Questions
2
votes
1answer
23 views
Python plot frequency of fft.rfft
this is my first question here on stackoverflow and I hope I will not make huge mistakes.
I am analyzing a set of time series with sampling rate of 1 Hz. I need to plot their fourier transform in ...
1
vote
1answer
42 views
Plotting Relative Frequency vs. Absolute on a matplotlib histogram
I am aware of some similar questions but I have tried the code on them and it does not work in my environment. So I have a large list of data (floating point numbers) and I want to plot it as a ...
0
votes
0answers
30 views
Getting frequency from a mp3 or wav file [duplicate]
Researching the Internet, I found out that for getting the frequency of the sound from a mp3 file or wav file, I need to use FFT algorithm. Can someone give me a good pythonic way of implementing the ...
3
votes
3answers
60 views
Python Beginner - How to generate a list and frequency from another list
Given:
[['x','a'], ['y','b'], ['z','a']]
I would like a list of the elements and a count frequency of the 2nd element:
[['x','a',2], ['y','b',1], ['z','a',2]]
0
votes
0answers
77 views
Sound editing and equalizer on python
Im currently using pyglet as my sound library on python,
The library is great but it does not contain an important feature i really need:
Frequency control while playing a certain song (lets say ...
1
vote
2answers
205 views
Converting word frequency to a graphical histogram in python
This is what I have right now, thanks to Pavel Anossov. I am trying to convert the word frequency that has been outputed into asterisks.
import sys
import operator
from collections import Counter
...
3
votes
6answers
111 views
Python: Most efficient way to get two Boolean property frequencies in a list of objects?
I have a User object, with two Boolean properties, like this:
class User(object):
def __init__(self, a, b):
self.a = a # Always a bool
self.b = b # Always a bool
I have a list of those ...
0
votes
2answers
87 views
Building a dictionary of words from multiple lists in python
I have a list of dictionaries of 100 points as follows:
datapoint1 a:1 b:2 c:6
datapoint2 a:2 d:8 p:10
.....
datapoint100: c:9 d:1 z:12
I want to print a list to a file as follows:
a b ...
0
votes
3answers
61 views
How to access information in a list/String using PYTHON
SO I have this list of terms
[('GO:0090141', 1), ('GO:0030308', 1), ('GO:0000266', 1), ('GO:0016881', 1), ('GO:0031307', 1)]
[('GO:0050681', 1), ('GO:0031491', 1), ('GO:0008270', 1), ('GO:0003677', ...
0
votes
2answers
39 views
boolean loopd keys strings comparator
i am doing a python project and i wanna compare a string to a list of keys and values - if all the keys were to match up a certain number of times with a word string, it should return True for example ...
0
votes
1answer
87 views
How to summarize data from one second in Graphite?
I am new to Graphite. I just wrote a Python script that generates data within graphite, however I am sending in the value of 1 for each datapoint, and there are multiple datapoints for each second. ...
3
votes
2answers
656 views
Python - Finding word frequencies of list of words in text file
I am trying to speed up my project to count word frequencies. I have 360+ text files, and I need to get the total number of words and the number of times each word from another list of words appears. ...
0
votes
2answers
251 views
Extracting most frequent words out of a corpus with python
Maybe this is a stupid question, but I have a problem with extracting the ten most frequent words out of a corpus with Python. This is what I've got so far. (btw, I work with NLTK for reading a corpus ...
0
votes
1answer
62 views
Music multiple simultaneous tones, python
I am working on an interesting project relating solving mathematical problems and music. It is easy to generate a specific note (or tone):
ton = amplitude*sin(2pi*frequency*time/samplerate)
I'm ...
-1
votes
2answers
252 views
Python — Determine Frequency of numbers showing up in dice rolls
these are the functions used to roll the dice.
def roll() -> int:
''' Return a roll of two dice, 2-12
'''
die1 = randint(1, 6)
die2 = randint(1, 6)
return die1 + die2
def ...
2
votes
1answer
233 views
How do you plot relative frequency in python
I am looking to plot the relative frequency of a bunch of numbers in Python. I need to use the hist function, I have looked elsewhere on this site but I haven't found anything.
I am doing the ...
1
vote
2answers
229 views
Probability count/frequency of related words?
I'm looking for a way to produce a numerical probability value for single words which share a common root word/meaning.
Users will generate content using words like "dancer," "dancing," "danced."
If ...
5
votes
1answer
794 views
pandas: Frequency table for a single variable
One last newbie pandas question for the day: How do I generate a table for a single Series?
For example:
my_series = pandas.Series([1,2,2,3,3,3])
pandas.magical_frequency_function( my_series )
...
1
vote
2answers
166 views
Plotting histogram using clusters
I have tried to research this problem, but failed. I'm quite a beginner at python, so bear with me.
I have a textfile containing numbers on each line (they are angles in degrees).
I want to first ...
2
votes
2answers
214 views
Given a list of words, identify all identical substrings of length 4 or greater
Let's say I have a list of foreign words:
ilikuwa
alikuwa
nilifundisha
anafundisha
tunasoma
tulisoma
I want to identify within this list of words, substrings of length 4 or greater that are common ...
0
votes
2answers
101 views
Create a frequency table that captures popular substrings within strings of a certain length - Python
I'm trying to compute frequency analysis on a Swahili corpus which I'm compiling. At the moment, this is what I have:
import os
import sys
from collections import Counter
import re
path = ...
1
vote
1answer
358 views
Python: unique words and their frequency in descending order
I'm doing a pretty simple homework problem for a Python class involving all sorts of statistics on characters, words and their relative frequencies etc. At the moment I'm trying to analyse a string of ...
0
votes
1answer
83 views
Highest value of a number from a list of modes
So I have found the frequencies of numbers from a list and have created a list such as this [2:3 , 25:1, 22:4, 5:2, 5:2] What im trying to do after that is have a for loop detecting the maximum ...
0
votes
2answers
117 views
Sorting a concordance?
For my homework, I need to isolate the most frequent 50 words in a text. I have tried a whole lot of things, and in my most recent attempt, I have done a concordance using this:
concordance = {}
...
2
votes
4answers
227 views
How to print frequencies in descending order?
I've had a look at other similar questions already but haven't been able to apply the answers to my program. At the moment the frequencies are printed in ascending order, what do I change to make it ...
0
votes
1answer
215 views
Frequency-wavenumber domain and fft2 command in numpy
I'd like to use numpy to preform a double frequency transform. I have some data that is in the space-time domain and I would like to look at it in the frequency-wavenumber domain. I think numpy's ft2 ...
2
votes
2answers
1k views
Setting a relative frequency in a matplotlib histogram
I have data as a list of floats and I want to plot it as a histogram. Hist() function does the job perfectly for plotting the absolute histogram. However, I cannot figure out how to represent it in a ...
1
vote
2answers
1k views
Fundamental Frequency by Cepstral Method
I'm trying to find frequencies by the Cepstral method. For my tests I got the following file http://www.mediacollege.com/audio/tone/files/440Hz_44100Hz_16bit_05sec.wav, an audio signal with a ...
0
votes
1answer
61 views
Limiting Update Frequency / Purging Update Cache
I have a User Interface that receives asynchronous notifications from a Service that prompts it to re-read information from a Database. The async notifications contain a primary key that can be used ...
1
vote
1answer
219 views
Converting excel files to python to frequency
Essentially I've got an excel files with voltage in the first column, and time in the second. I want to find the period of the voltages, as it returns a graph of voltage in y axis and time in x axis ...
1
vote
1answer
238 views
Get the average number of occurrences in a list of dicts
Given a list of dictionaries (a log JSON from MongoDB), where one of the values of the dict is a datetime value, I need to know the frequency it happens.
Let's say:
[
{"time": "2010-11-11 ...
5
votes
2answers
527 views
Sorting a list by frequency of letter in python (decreasing order)
Like the title says I need to write a function that will sort a list by frequency of letters. Normally I would supply my code with what I have so far but I have no idea where to get started. I'm ...
5
votes
4answers
725 views
Python Audio Transfer Through Lasers
I'm currently working on a project that has been relatively easy, up until now. The underlying project is to transmit data/messages over lasers using audio transformation.
In a nutshell the process is ...
3
votes
1answer
1k views
Python find audio frequency and amplitude over time
Here is what I would like to do. I would like to find the audio frequency and amplitude of a .wav file at every say 1ms of that .wav file and save it into a file. I have graphed frequency vs amplitude ...
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 ...
2
votes
1answer
382 views
readframes return 2 byte in python
When readframes() is used in python, the online documention says sampling frequency is returned it looks it returns 2 bytes. I think there are 4 byte on each frame:
left = 2 bytes
right = 2 bytes
...
4
votes
1answer
13k views
Plot Histogram in Python
I have two lists, x and y.
x contains the alphabet A-Z and Y contains the frequency of them in a file.
I've tried researching how to plot these values in a histogram but has had no success with ...
0
votes
4answers
407 views
UPDATE:Sorting a list from a for output from highest to lowest in python
for x in letters:
frequency[x]+=1
for x in frequency:
print x,frequency[x],frequency[x]/float(n)
Sorry but I'm fairly new to programming and everything and I'm trying to ...
3
votes
3answers
170 views
Python summing frequencies in a file
I have a large file (950MB) that conains words and frequencies as follows, one per line:
word1 54
word2 1
word3 12
word4 3
word1 99
word4 147
word1 4
word2 6
etc...
I need to sum the ...
-3
votes
2answers
929 views
python - Letter Frequency [closed]
Write a Python function called hist() which takes a string as an argument, and creates a visual representation of the frequency of its alphabetic letters by printing each letter in uppercase the ...
5
votes
4answers
1k views
Counting frequency of words in documents using python regex
Created a python module which reads in a file, removes the stop words and outputs a python dictionary with the word and its frequency (How many times it occurred in the document).
def run():
filelist ...
1
vote
2answers
1k views
Extracting an amplitude list from *.wav file for use in Python
I'm having a little bit of programing and conversion trouble. I'm designing an AI to recognize notes played by instruments and need to extract the raw sound data from a wave file. My objective is to ...
4
votes
2answers
4k views
Frequency detection from a sound file
What I am trying to achieve is the following: I need the frequency values of a sound file (.wav) for analysis. I know a lot of programs will give a visual graph (spectrogram) of the values but I need ...
1
vote
1answer
273 views
Making specific frequency (ranges) louder
I want to make certain frequencies in a sequence of audio data louder. I have already analyzed the data using FFT and have gotten a value for each audio frequency in the data. I just have no idea how ...
0
votes
2answers
234 views
Python: find most frequent bytes?
I'm looking for a (preferably simple) way to find and order the most common bytes in a python stream element.
e.g.
>>> freq_bytes(b'hello world')
b'lohe wrd'
or even
>>> ...
11
votes
4answers
7k views
How to find most common elements of a list?
Given the following list
['Jellicle', 'Cats', 'are', 'black', 'and', 'white,', 'Jellicle', 'Cats',
'are', 'rather', 'small;', 'Jellicle', 'Cats', 'are', 'merry', 'and',
'bright,', 'And', ...
5
votes
1answer
3k views
Most Efficient way to calculate Frequency of values in a Python list?
I am looking for a fast and efficient way to calculate the frequency of list items in python:
list = ['a','b','a','b', ......]
I want a frequency counter which would give me an output like this:
[ ...
16
votes
3answers
7k views
Python frequency detection
Ok what im trying to do is a kind of audio processing software that can detect a prevalent frequency an if the frequency is played for long enough (few ms) i know i got a positive match. i know i ...
17
votes
12answers
2k views
Python - Is a dictionary slow to find frequency of each character?
I am trying to find a frequency of each symbol in any given text using an algorithm of O(n) complexity. My algorithm looks like:
s = len(text)
P = 1.0/s
freqs = {}
for char in text:
try:
...
14
votes
4answers
4k views
Python library for playing fixed-frequency sound
I have a mosquito problem in my house. This wouldn't usually concern a programmers' community; However, I've seen some devices that claim to deter these nasty creatures by playing a 17Khz tone. I ...


