search for: vowel

Displaying 20 results from an estimated 82 matches for "vowel".

Did you mean: vogel
2012 Jun 06
2
non ascill characters in plots. no alternative but plotmath?
...e Greek letters did not display properly in a plot. There were some ordinary ASCII instead. I asked her to send me the code so I could test. For me, the plot looks ok on the screen. Format1 <- c(320,500,700,1000,500,320,700,500,320) Format2 <- c(800,1000,1150,1400,1500,1650,1800,2300,2500) Vowel <- c("u","o", "?", "a","?", "y", "?", "e","i") V1 <- data.frame(Format1,Format2,Vowel) plot(Format1 ~ Format2, data = V1, type="n") text(V1$Format2, V1$Format1, labels=V1$Vowel) On my Debian l...
2008 Feb 03
4
Extract vowels and consonants using Ruby Regex
Hello, I am trying to build a regex to extract vowels and consonants from a string. So far, I am able to extract the basic a-e-i-o-u sequence using the following extension to the String class: class String def vowels scan(/[aeiou]/i) end def consonants scan(/[^aeiou]/i) end end examples: >> "Mary had a little lamb"....
2005 Apr 30
2
Warning from Rcmd check - data could not find data set
This is rw2010 from CRAN. When running Rcmd check on a package I get: Warning in utils::data(list = al, envir = data_env) : data set 'vowel.test' not found Warning in utils::data(list = al, envir = data_env) : data set 'vowel.train' not found Warning in utils::data(list = al, envir = data_env) : data set 'waveform.test' not found Warning in utils::data(list = al, envir = data_env) : data set 'wave...
2005 Apr 30
2
Warning from Rcmd check - data could not find data set
This is rw2010 from CRAN. When running Rcmd check on a package I get: Warning in utils::data(list = al, envir = data_env) : data set 'vowel.test' not found Warning in utils::data(list = al, envir = data_env) : data set 'vowel.train' not found Warning in utils::data(list = al, envir = data_env) : data set 'waveform.test' not found Warning in utils::data(list = al, envir = data_env) : data set 'wave...
2008 Sep 25
1
Repeated factor levels - inconsistency of factor and levels<- functions?
...ne common level. If I do it by factor function, giving the same label names for all values I want to group, it doesn't work: > x<-letters[1:5] > x [1] "a" "b" "c" "d" "e" > f<-factor(x,levels=letters[1:5], labels=c("vowel","consonant","consonant","consonant","vowel")) > levels(f) [1] "vowel" "consonant" "consonant" "consonant" "vowel" But, after it, if I update level names by a single assignment, levels with the sa...
2011 Nov 25
0
Making vowelplot() (from the vowels pkg) work
Hello everyone. I've got some acoustic data I want to display for a project in my linguistics class. The vowels pkg supposedly does precisely what I need, but even the samples given in the documentation won't run on my system. Package and example is here: http://ncslaap.lib.ncsu.edu/tools/norm/package/html/vowels-package.html I get the error that indicates a mismatch between the argument parameters...
2005 Sep 16
2
php and mysql ok but display ? instead of a vowel with accent
php and mysql ok but display the character ? instead of a vowel with accent, i dont know why, i think that mybe can be the configuration of de php.ini, but why? if somebody can helpme, i will be very thankful. bye -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20050916/b...
2009 Nov 25
0
ROCR Issue: Averaging Across Multiple Classifier Runs in ROC Curve
Dear R-philes, I am having some trouble averaging across multiple runs of a classifier in an ROC Curve. I am using the ROCR package and the plot() method. First, I initialize a list with two elements where each element is a list of predictions and labels: vowel.ROC <- list(predictions=list(), labels=list()) For every run of the classifier, I append the scores and labels to their corresponding list elements as follows: vowel.ROC$predictions <- append(vowel.ROC$predictions, list(scores)) vowel.ROC$labels <- append(vowel.ROC$labels, list(numGrps...
2001 Sep 24
1
need help creating means table
Hello, I have been trying to use by to create a means table, but receive the error " by(xx, list(subjs, cons, vowels), mean) Error in Summary.data.frame(..., na.rm = na.rm) : only defined on a data frame with all numeric or complex variables" when the data frame consists of three factor columns (subjs, cons and vowels) and 5 numeric data columns. The output I'm looking for is a simple mean for each of...
2012 Mar 03
3
Using ddply within a function by argument transfer
An embedded and charset-unspecified text was scrubbed... Name: inte tillg?nglig URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120303/a62e41f2/attachment.pl>
2009 Oct 22
1
Converting a Vector into a 2-level Factor
Hello Everyone, Let's say I have a vector as follows: vowels = c("aa", "aa", "ah", "ao", "eh) I want to make a factor consisting of two levels: the things that are "aa" and those that are not "aa". How would I do that? I tried using factor(vowels, levels=c("aa", "~aa")...
2024 Mar 01
1
gsub issue with consecutive pattern finds
Here's another *incorrect* way to do it -- incorrect because it will not always work, unlike Iris's correct solution. But it does not require PERL type matching. The idea: separate the two vowels in the regex by a character that you know cannot appear (if there is such) and match it optionally, e.g. with '*" repetition specifier. I used "?" for the optional character below (which must be escaped). > gsub("([aeiouAEIOU])\\?*([aeiouAEIOU])", "\\1_\\2&...
2024 Mar 01
1
gsub issue with consecutive pattern finds
...;> Hi all, >> >> I tested next command: >> >> gsub("([aeiouAEIOU])([aeiouAEIOU])", "\\1_\\2", "aerioue") >> >> with the following output: >> >> [1] "a_eri_ou_e" >> >> So, there are two consecutive vowels where an underscore is not added. >> >> May it be a bug? Is it expected (bug or not)? Is there any chance to get >> what I want (an underscore between each pair of consecutive vowels)? >> >> >> Thank you! >> >> Best regards, >> >> Iago &g...
2024 Mar 01
1
gsub issue with consecutive pattern finds
Hi all, I tested next command: gsub("([aeiouAEIOU])([aeiouAEIOU])", "\\1_\\2", "aerioue") with the following output: [1] "a_eri_ou_e" So, there are two consecutive vowels where an underscore is not added. May it be a bug? Is it expected (bug or not)? Is there any chance to get what I want (an underscore between each pair of consecutive vowels)? Thank you! Best regards, Iago [[alternative HTML version deleted]]
2011 May 19
1
IDWT - Inverse Discrete Wavelet Transform
Hello, I am not expert in wavelet. i am working with a discrete dataset in 3D. I applied the D4 wavelet transform to each dimension sequentially. I made some analysis in the transformed space and i detected some interesting vowel. My question is. How is it possible to map a 3d coordinate in the transformed space to the related coordinate in the 3d original dataset? (i think that probably one (x,y,z point in the 3d transformed space will be related probably with 8 vowels in the orginal one...)) Thanks in advance for the h...
2008 Feb 20
2
spelling with <g>?
Hello, What should the following input produce? Dutch has shifted Germanic g to the velar fricatives [?] and [x], but retained the spelling with <g> and thus at least a visual similarity to German; English and Frisian have shifted g to [j] before palatal vowels The Dingus says: <p>Dutch has shifted Germanic g to the velar fricatives [?] and [x], but retained the spelling with <g> and thus at least a visual similarity to German; English and Frisian have shifted g to [j] before palatal vowels</p> Note the raw '<g>',...
2001 Mar 04
1
bubblebabble patch
...i < dgst_raw_len; i++) { + + char hex[4]; + + snprintf(hex, sizeof(hex), "%02x:", dgst_raw[i]); + strcat(retval, hex); + } + + retval[(dgst_raw_len * 3) - 1] = '\0'; + return retval; +} + +char* +key_fingerprint_bubblebabble(u_char* dgst_raw, size_t dgst_raw_len) +{ + char vowels[] = { 'a', 'e', 'i', 'o', 'u', 'y' }; + char consonants[] = { 'b', 'c', 'd', 'f', 'g', 'h', 'k', 'l', 'm', 'n', 'p', 'r', 's', 't', 'v...
2024 Mar 01
1
gsub issue with consecutive pattern finds
...quez <iago.gine at sjd.es> wrote: > Hi all, > > I tested next command: > > gsub("([aeiouAEIOU])([aeiouAEIOU])", "\\1_\\2", "aerioue") > > with the following output: > > [1] "a_eri_ou_e" > > So, there are two consecutive vowels where an underscore is not added. > > May it be a bug? Is it expected (bug or not)? Is there any chance to get > what I want (an underscore between each pair of consecutive vowels)? > > > Thank you! > > Best regards, > > Iago > > [[alternative HTML versi...
2007 Apr 16
3
Kernel Crashing
Hi, I''ve just attempted several times to install Fedora Linux domU''s on a Fedora 6 [32-bit xen kernel 2.6.20-1.2944], and it keeps crashing at various points when trying to format domU''s virtual disk. I''ve tried allocating 1 vcpu and 2 vcpus, and it still keeps crashing dom0. The machine has a total of two hyperthreaded 3.2ghz Xeon cpus, and 3GB of RAM.
2010 May 26
1
Linear Discriminant Analysis in R
Dear R gurus, Thank you all for continuous support and guidance -- learning without you would not be efficient. I have a question regarding LD analysis and how to best code it up in R. I have a file of (V52 and 671 time points across all columns) and another file of phonetic features (each vowel is aligned with a distinct binary sequence, i.e. E 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 and so on). I need to run lda (at first for one of the features, meaning one column only extracted from the "binary" file mentioned above). In code so far I have very little, but here the...