Questions tagged [frequency]

The rate at which a thing occurs or is found.

The rate at which a thing occurs or is found.

2858 questions
0
votes
1 answer

Aggregations and frequencies from two variables in a large dataframe

I know this probably is basic, but my efforts keep failing. Here's my problem. I have a large dataframe with 50+ columns, two of which are "year" and "unique individual tag numbers". The dataframe has several 1000 entries, and most, but not all…
Dag
  • 569
  • 2
  • 5
  • 20
0
votes
3 answers

How to count frequency of occurrences in the last 7 days when data has date/time

Here is the sample dataset, having 2 columns, Data, and Name The problem is to create a measure that is going to count the number of name occurrences having a count greater than 2 Step 1 is to find the Names that show up at least once a day without…
StackOne
  • 260
  • 2
  • 16
0
votes
0 answers

How to play a specific frequency sound?

So I'm trying to find something to help me out but without much luck. I'm trying to click a button and start a specific frequency for example 160hz but can't figure it out yet, if anyone has any experience or can help out with this, please let me…
0
votes
1 answer

Laplace domain band-pass filter equivalent to Matlab 2nd order butterworth filter

I am trying to build a bandpass filter analytically with the following specification: Center frequency of fc (say 16hz) Pass bandwidth of fb (say 2hz. therefore, cut-off frequencies are 15 and 176hz) 0 dB in the pass bandwidth The hope is to…
Eric
  • 409
  • 2
  • 15
0
votes
0 answers

Join two fft frequency spectra

I have two frequency maps obtained from numpy fft. Like so: def fft(self): Y = np.fft.fft(self.data) # fft computing and normalization Y = 2.0/self.len * np.abs(Y[:self.len//2]) frq = np.arange(self.len) / self.duration # two sides…
Lex Podgorny
  • 2,598
  • 1
  • 23
  • 40
0
votes
1 answer

How to report a list of numeric values calculated from a group_by function for different columns in R?

I have this dataset for items at a picnic that contributed to a foodborne illness outbreak. Yes or no in the 'sick' column determines whether the patient got sick after the picnic. Yes or no after a food item (apple, banana, strawberry, yogurt, or…
Matt
  • 25
  • 4
0
votes
0 answers

how to plot spectrogram from IQ signal in matlab?

I have an IQ signal saved using BladeRF platform in .bin file. I want to plot the spectrogram image of this signal in matlab I tried with the existing function of matlab spectrogram but I got an image which is not expected, in fact my signal is over…
0
votes
1 answer

Create new column with frequency of values

This is similar to my previous questions posted: Create new column with distinct character values But I also wanted some additional information. df: ID <- c(1,1,1,1,1,1,1,2,2,2,2,2) color <- c("red","red","red","blue","green","green","blue", …
Bruh
  • 277
  • 1
  • 6
0
votes
1 answer

how use fft in accelemetros data to transform in spectrum power?

I placed vibrations of a component using accelerometers, then produced a dataframe with accelerations, that is, dataframe with the following columns: accX, accY and accZ. It is a variable in time, that is, a time series. My idea is to transform the…
0
votes
1 answer

How to identify more than one mode in this python pandas code on dataframe?

I found a problem in completing this python pandas exercise. I am asked to write a pandas program to display most frequent value in a random series and replace everything else as 'Other' in the series. I can't do it in a series but kind of OK in a…
ronzenith
  • 341
  • 3
  • 11
0
votes
0 answers

Vlookup a value within 7 days of a frequency date = Resolved. thanks

Resolved. thanks. thank you for all the help here
K L
  • 1
  • 1
0
votes
0 answers

Frequency of the most repetitive numbers in order

From a data set consisting of 5 columns and containing an indefinite number of rows I would need to extract in an orderly manner the pairs of numbers that come out several times together in the same row, let me explain better with an…
Den
  • 1
  • 1
0
votes
0 answers

ROC curve frequencies deviate

I've got a question of understanding on ROC curve. For estimation of an optimal cut point for a biomarker, I selected an anchor and performed a ROC analysis. The anchor event is quite rare (about 5%). The event when classifying now with the novel…
0
votes
2 answers

R Function to merge mutiple tables with different dimensions (addition of the corresponding values)

So basically, there is some work I have to do with a huge data-set. I extracted tables with two different variables within the dataframe, to get Frequency. For example: table1<-table(df1$vehicletype,df1$company) # let's say table 1 looks something…
Filip1234
  • 1
  • 1
0
votes
1 answer

Weird Frequency Table Output

so I am getting a strange output table/frequency chart that does not match up with my data. The variable PPETHMREC has been recoded (as shown in the code below) but despite the recoded values being present, the formatting is only reflecting a single…