1
vote
1answer
28 views

Generating yearly frequency plot from multi-year data

I have hourly wind speed data in the following format DT,DIR,SPEED ...
0
votes
2answers
58 views

Nested tables and calculating summary statistics with confidence intervals in R

This question is about the statistical program R. Data I have a data frame, study_data, that has 100 rows, each representing a different person, and three columns, gender, height_category, and ...
2
votes
0answers
53 views

Density plot in ggplot [duplicate]

Suppose I have following dataset: set.seed(seed=10) n <- 10000 s.data <- data.frame(score = rnorm(n,500,100), gender = ...
5
votes
1answer
63 views

How to create missing values in table in R?

I have 40 pairs of birds with each male and female in the pair scored for their colour. The colour score is a categorical variable with a value range of 1 to 9. I would like to create a table with the ...
1
vote
1answer
53 views

Using R, is it possible to get a frequency table where no data exist?

I am producing some demographic tables, to include race, sex, and ethnicity. One of the tables is a crosstab of sex and race by ethnicity (Hispanic / not Hispanic). So far, there are no Hispanic ...
3
votes
2answers
55 views

Frequency of key in group

Given I have a dataframe df like this containing the columns Key and User. Key User 1 Bob 2 Tobi 1 Bob 3 Bob 4 Bob 5 Bob 6 Tobi 5 Bob I want to create a new column ...
1
vote
1answer
73 views

R: relative frequency in r by factor

I would like to get a table of top 10 absolute and relative frequencies for a variable across other factor variable. I have a dataframe with 3 columns: 1 column is a factor variable, 2nd is other ...
0
votes
1answer
78 views

Can R plot a histogram *without* doing the frequency count? My data already consists of (item, count) pairs

All the examples I see from R hist() starts with a raw list of data, and does the frequency counts in R. My data is not raw, it's already counted and binned, for instance A, 34 B, 15 C, 82 D, 22 Can ...
4
votes
4answers
136 views

determine frequency of string using grep [duplicate]

if I have a vector x <- c("ajjss","acdjfkj","auyjyjjksjj") and do: y <- x[grep("jj",x)] table(y) I get: y ajjss auyjyjjksjj 1 1 However the second string ...
-1
votes
1answer
123 views

How to get frequency of word in a sentence in R?

I have one input file which has one paragraph. I need to find the frequency of particular word in that paragraph. cat file: Text Index train is good 1 let the train come 5 train is best ...
0
votes
1answer
232 views

use R to create a large multiple column frequency table

I am having a hard time doing this efficiently and apologize if it's a basic question. I need to make a contingency table with N and percent to summarize relationships between a large number of binary ...
2
votes
3answers
110 views

Algorithm to sample groups to match expected proportions

I need to find a way to sample groups so that the observed proportions match the expected ones. I would like to keep as many of the observations in each group as possible. Simple example: Group A = ...
-1
votes
2answers
49 views

How to take frequencies of different ranges using R?

I have a set of data which refers to Velocities of different people...so my data looks like this So its basically just a list of velocities Velocity(m/s) 1.2 1.4 2.3 1.6 4.5 3.5 1.7 4.5 3.7 I want ...
0
votes
1answer
266 views

“dims [product 0] do not match the length of object” error in R when using daply for frequency counts

I have a list of data.frames that looks like this: df=data.frame( data_id=rep(LETTERS[1:10],each=1), data_value=c(1,2,2,3,3,2,3,1,1,3)) df2=data.frame( data_id=rep(LETTERS[1:10],each=1), ...
1
vote
1answer
70 views

“superimpose” the count table and percentage table in R

The script below illustrate my question: library(reshape2) set.seed(1) dummy.df <- data.frame(var_a=sample(letters[1:5],200,replace=TRUE), ...
3
votes
1answer
228 views

Frequency Tables in R

This seems to be basic, but I wont get it. I am trying to compute the frequency table in R for the data as below 1 2 2 1 3 1 I want to transport the the two way frequencies in csv output, ...
1
vote
1answer
239 views

subset() a factor by its number of observation

I have a problem with subset()function. How can I subset a factor of my dataframe by its number of observation? NAME CLASS COLOR VALUE antonio B YELLOW ...
2
votes
5answers
98 views

how do I create a table of value-frequency combinations arranged vertically in R

(newbie) how do I create a table of value-frequency combinations arranged vertically, > df = data.frame(fruit=c("apple", "banana", "cherry", "cherry", "apple", "banana", "apple", "date")); > ...
1
vote
1answer
127 views

Include zero frequencies in frequency table for Likert data

I have a dataset with responses to a Likert item on a 9pt scale. I would like to create a frequency table (and barplot) of the data but some values on the scale never occur in my dataset, so table() ...
2
votes
0answers
85 views

Describing Frequency & Period with zoo

I have weekly sales observations for several products. I then create a zoo object to hold these data but can't make the frequency/cycle work as I intend. Data is available at Dropbox (asr.csv). I've ...
2
votes
2answers
203 views

How to generate frequency table from raw data in R

I am new to R. I want to generate a frequency table from raw data (decimals) like: x V1 1 10.10 2 46.65 3 53.60 4 38.50 5 45.95 6 12.25 7 59.60 8 23.30 9 11.05 10 58.35 11 40.20 12 ...
0
votes
3answers
119 views

Convert raw data to frequencies

I'm having a little trouble trying to plot certain graphs with this data set that I have, the data set is similar to: Year Count ENSO NAO 1 1900 5 0.49063600 ...
0
votes
2answers
127 views

Calculating the ratio of frequency and number of terms in R?

I have a large set of data saved in a long list. This is an example of the first six records: A <- list(c("JAMES","CHARLES","JAMES","RICHARD"), c("JOHN","ROBERT","CHARLES"), ...
3
votes
1answer
129 views

R Frequency table containing 0

I'm working on a data.frame with about 700 000 rows. It's containing the ids of statusupdates and corresponding usernames from twitter. I just want to know how many different users are in there and ...
3
votes
3answers
823 views

frequency table with several variables in R

I am trying to replicate a table often used in official statistics but no success so far. Given a dataframe like this one: d1 <- data.frame( StudentID = c("x1", "x10", "x2", ...
1
vote
2answers
600 views

Calculate relative frequency of list terms and its sum in R?

I have data saved in a long list. This is an example of the first six lines / records: A <- list(c("JAMES","CHARLES","JAMES","RICHARD"), c("JOHN","ROBERT","CHARLES"), ...
0
votes
2answers
401 views

R Generate frequency table

I'm new to R platform and language and I have simple (well not for me) problem to solve. I hope that you can help me. I have sample vector like this: v <- c(1, 2, 1, 3, 2, 3, 3, 4, 1, 4) What ...
5
votes
3answers
5k views

How to generate a frequency table in R

I'm new with R. I need to generate a simple Frequency Table (as in books) with cumulative frequency and relative frecuency. So I want to generate from some simple data like > x [1] 17 17 17 17 ...
2
votes
3answers
221 views

How can I make a list of all the unique pairs of data points in R?

So I have two vectors of data points, and I would like to make a list of each unique pair, along with that pair's frequency. I know that I can use table to do this with one of the vectors, but I can't ...
-1
votes
1answer
168 views

Computing vowel frequency with R

Can you please give me a hint on what's the best and easiest way to compute the absolute and relative frequencies of vowels in a string using R? I guess the source code is a bit different from what ...
2
votes
2answers
261 views

Computing contingency tables in R language

I have a data set in R as follows ID Variable1 Variable2 Choice 1 1 2 1 1 2 1 0 2 2 1 1 2 2 1 1 I need to get the ...
2
votes
1answer
901 views

Plot relative frequencies with dodged bar plots in ggplot2

can anybody answer how I can plot a bar-plot which maps a numeric x-variable to its relative frequency grouped by a factor in ggplot2? The important thing is: The relative frequencies should be ...
2
votes
1answer
323 views

R: combining frequency lists with different lengths by labels?

I'm a newbie to R, but really like it and want to improve constantly. Now, after searching for a while, I need to ask you for help. This is the given case: 1) I have sentences (sentence.1 and ...
3
votes
2answers
334 views

Splitting Strings and Generating Frequency Tables in R

I have a column of firm names in an R dataframe that goes something like this: "ABC Industries" "ABC Enterprises" "123 and 456 Corporation" "XYZ Company" And so on. I'm trying to generate ...
0
votes
0answers
518 views

how to plot relative frequency for each factor using ggplot2

I am trying to plot the relative frequency of a variable with multiple factors, but i could not figure out how to do this using ggplot2. I have search through the forum, and tried some solutions, but ...
0
votes
1answer
2k views

R table frequency

I'm trying to write a function to extract the frequencies of this table: 0 1 2 3 4 5 6 7 30 22 9 12 2 5 1 16 So I want to get c(30, 22, 9, 12, 2, 5, 1, 16). The table changes each time ...
4
votes
2answers
391 views

Better way to get a frequency table for continuous data (R)?

With df: df <- data.frame(value=abs(rnorm(100, 25, 5)), status=sample(0:1,100,replace=T)) df$value[sample(1:100,5)] <- NA I need to get a frequency (percentage) table (better return a matrix) ...
11
votes
2answers
4k views

Getting frequency values from histogram in R

I know how to draw histograms or other frequency/percentage related tables. But now I want to know, how can I get those frequency values in a table to use after the fact. I have a massive dataset, ...
12
votes
2answers
543 views

Plot weighted frequency matrix

This question is related to two different questions I have asked previously: 1) Reproduce frequency matrix plot 2) Add 95% confidence limits to cumulative plot I wish to reproduce this plot in R: ...
5
votes
2answers
1k views

Make a table of string frequency - R

I am trying to make a summary table of many strings in R. My data looks like this: x<-c("a", "a", "b", "c", "c", "c", "d") How would I analyse the recurrence of each string at once? Ideally to ...
3
votes
2answers
549 views

Create a variable capturing the most frequent occurence by group

Define: df1 <-data.frame( id=c(rep(1,3),rep(2,3)), v1=as.character(c("a","b","b",rep("c",3))) ) s.t. > df1 id v1 1 1 a 2 1 b 3 1 b 4 2 c 5 2 c 6 2 c I want to create a third ...
2
votes
3answers
500 views

Assign weights based on frequency of occurrence of values

I would like to ask you for help with my data frame. It is a vector of many phases and for every one we have names of variables. Lets say vec<-data.frame(phase1= ...
2
votes
2answers
284 views

Reproduce frequency matrix plot

I have a plot that I would like to recreate within R. Here is the plot: From: Boring, E. G. (1941). Statistical frequencies as dynamic equilibria. Psychological Review, 48(4), 279. This is a ...
2
votes
2answers
805 views

Frequency of non-zero or specific number in a column

My input file: x <- read.table(textConnection(' t0 t1 t2 t3 t4 aa 0 1 0 1 0 bb 1 0 1 0 1 cc 0 0 0 0 0 dd 1 1 1 0 1 ee 1 1 1 0 0 ...
2
votes
4answers
2k views

Show frequencies along with barplot in ggplot2

I'm trying to display frequencies within barplot ... well, I want them somewhere in the graph: under the bars, within bars, above bars or in the legend area. And I recall (I may be wrong) that it can ...