I have a question regarding the radio signals, is it possible to send data over a particular frequency band from android ? Without using any external module or Arduino/raspberry pi.
For example sending the data over 60MHz frequency, from android and…
Is it possible to generate modulated wave using ESP32 (with or without) it's DAC? I would like to generate signal with carier frequency and modulation frequency.
I have a teable like
ID Name
1 A
2 A
3 A
4 B
5 B
6 C
7 C
8 B
9 A
10 C
I want like this frequency count in increment
ID Name Frequency
1 A 1
2 A 2
3 A 3
4 B 1
5 B 2
6 C 1
7 C 2
8 B 3
9 A …
I have written a solution for a HackerRank question jumping on clouds in C language. The question is:
There is a new mobile game that starts with consecutively numbered clouds. Some of the clouds are thunderheads and others are cumulus. The player…
I am attempting to count the number of each category and merge it back onto the table by overwriting the table in postgresql.
This is the main table I have (Named Titanic, containing the columns in…
(Not allowed to use pandas)
I am very new to python and struggling with this question. I am trying to create a function. I have a CSV file (called personal_info.csv) with a bunch of different columns (full_name, weight_b, height_c, etc). I am trying…
I am trying to analyze this time series data from the Wooldridge Econometrics book containing weekly data on the New York Stock Exchange, beginning in the year 1976 January and ending in 1989.
I have never worked with the ts() function before but I…
I have a dataset with many columns and thousands of rows. I am trying to get another column, foo which has the frequency that a value above 100 occurs in a row.
structure(list(S026401.R1 = c(0L, 0L, 0L, 0L, 0L), S026404.R1 = c(0L,
0L, 0L, 0L, 0L),…
So, I have a big data frame which I imported from Excel to RStudio, its dimension is along the 2000x124. I'm able to filter this 2000 so that I work with smaller groups of 100sx124.
On this dataframe each row is an individual and the columns show…
My goal is to analyze a text file, tokenize each word, then alphabetize each word with its word frequency.
Example:
Input: The house is on the ground on earth.
Output:
earth - 1
ground - 1
house - 1
is - 1
on - 2
the - 2
I have been able to open…
In my java program, I am trying to display a table of two single arrays in descending order. I have managed to display it in both ascending and descending order. However, there is an additional array element -1 in my terminal. The -1 can be seen in…
I have two datasets with a number of tweets, one about womens football and one about mens football. I also have a custom dictionary of feminine coded words, and my goal is to find out, whilst controlling for the number of words in a tweet, how often…
My dataset contains presence/absence data of plant species at two different time points (Occurence_2000, Occurrence_2022), as well as the difference between the observations (Difference). A total of 29 plots were examined and there are 206 species.…
I want to generate on python a signal that is random in the time domain but i want it to have a bandwidth in the frequency domain equals to 0-60 hz.
I dont know from where to start. I'm new to python.