4
votes
4answers
153 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 ...
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 ...
1
vote
1answer
295 views

C program: how to find the maximum/minimum frequency of a character in a string

I am trying to find a way to get the values of max/min freq of characters in a string E.g. helpme would have max freq = 2 and min freq = 1 (there are 2 e's and there are other letters that occurs ...
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 ...
0
votes
2answers
357 views

Getting relative frequency of each character in a string in java

I wanted to get the average of each unique character in a string. I have an example here as it would be easier to illustrate it. String: The big brown fox Average of each character including ...
2
votes
6answers
238 views

How to find out the most appear numbers from the String?

I have a String which contains numbers in a comma separated form. and I want to extract the most appears numbers from the String. For example I have a String like.. String ...
3
votes
2answers
345 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 ...
1
vote
8answers
2k views

frequency analysis algorithm

I want to write a java program that searches through a cipher text and returns a frequency count of the characters in the cipher, for example the cipher: "jshddllpkeldldwgbdpked" will have a result ...
2
votes
2answers
3k views

Sql server function for displaying word frequency in a column

I have a table that lists a freet text input from a survey where enterents were allowed to enter their responses (regarding colours they would like to have in their wedding) I would like to write a ...