similar to: Making vowelplot() (from the vowels pkg) work

Displaying 20 results from an estimated 1100 matches similar to: "Making vowelplot() (from the vowels pkg) work"

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".vowels => aaaiea >> "Mary had a
2001 Mar 04
1
bubblebabble patch
Hi, Here is a patch that adds the possibility of displaying key fingerprints in the bubblebabble format used by ssh.com ssh implementations. I hope it makes its way into the source. --- ./openssh-2.5.1/key_original.h Sun Mar 4 00:47:55 2001 +++ ./openssh-2.5.1/key.h Sun Mar 4 00:57:57 2001 @@ -36,6 +36,17 @@ KEY_DSA, KEY_UNSPEC }; + +enum digest_type { + DIGEST_TYPE_SHA1, +
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
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
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"), exclude=NULL), but this gives
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
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)?
2024 Mar 01
1
gsub issue with consecutive pattern finds
Hi Iago, This is not a bug. It is expected. Patterns may not overlap. However, there is a way to get the result you want using perl: ```R gsub("([aeiouAEIOU])(?=[aeiouAEIOU])", "\\1_", "aerioue", perl = TRUE) ``` The specific change I made is called a positive lookahead, you can read more about it here: https://www.regular-expressions.info/lookaround.html
2024 Mar 01
1
gsub issue with consecutive pattern finds
Hi Iris, Thank you. Further, very nice solution. Best, Iago On 01/03/2024 12:49, Iris Simmons wrote: > Hi Iago, > > > This is not a bug. It is expected. Patterns may not overlap. However, there > is a way to get the result you want using perl: > > ```R > gsub("([aeiouAEIOU])(?=[aeiouAEIOU])", "\\1_", "aerioue", perl = TRUE) > ``` >
2024 Mar 22
1
Problem with new version of R: Mutated vocals
Dear ladies and gentlemen, I have recently installed the latest version of R (4.3.3) for windows. Now I have the following problems with mutated vowels like ?, ?, etc. Here is an example: If I type the command: Dir <- "C/Users/macho/Documents/_LVn/Experimentelle ?bungen" in the R console there is no problem. However, if I put the same command into a source file (e.g. Test.r) and call
2010 Jun 27
1
Indic language display problem (character order)
I am having trouble inputing and displaying Bengali script in software running under wine. Like other Indic languages, Bengali has vowels and other diacritics that fall on either side of the previous consonant (i.e. does not follow 'normal' latin script sequential character order). These vowels are not being displayed correctly -- they follow the typed character order, not the correct
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
2001 Aug 10
3
specuak chars
Hi, can anyone tell how to enter special characters like vowels with accents or the spanish "?"? For Linux apps I can enter them by typing a special key sequence, e.g.: ? : [CTRL] [?] [a] When windows booted directly this also works. Alternatively it is possible to enter the ASCII-number by pressing [Alt]. Well, when I start a windows application with wine none ot the
2007 Sep 16
1
utf-8 in Wine
I'm using wine-0.9.33 on Ubuntu. I have a Windows app, ListPro, that runs fine. However, I cannot type in Hebrew- I get "Swedish vowels" when I try to use the Hebrew keyboard layout. Previously saved files with Hebrew display fine. What can I do to enable Hebrew typing? Thanks in advance. -- Dotan Cohen http://what-is-what.com http://gibberish.co.il
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/bc4a579b/attachment.html>
2003 Jul 14
2
special characters
Dear R-users, Some hours ago I successfully installed R 1.7.1 on my Linux computer (SuSE 8.1). Now I am trying to get my scripts work which I have written for R/Windows. * While with Windows I was able to use the vowels with the accents present in the Hungarian language: > d$crude.inc<-d$esetsz?m/d$?vk?zepi.l?leksz?m*1000000 > the same line leads to an error on Linux: >
2005 Sep 13
2
wbinfo returns Error looking up domain users
Hi all, We have the following setup : PDC (samba/ldap) BDC's this was all originally setup on 2.0.9 and was working fine. We upgraded to 2.0.20 a few days now wbinfo doens't work. We use usrmgr.exe for admin and no users show up and only the BULTIN groups show up. zeus ~ # wbinfo -u Error looking up domain users zeus ~ # wbinfo -g BUILTIN/Print Operators BUILTIN/Backup Operators
2004 Nov 25
0
SAMR_CREATE_USER not running add machine script
Hi all I have now got a working PDC with successful adding of machines to domain and users can login. I've created a second PDC on a seperate machine using exactly the same configs with different PDC name. I can join a machine to the domain, but when you try to log in after joining the domain I get "unknown username or password" the logs shows that all authentication was
2020 Jul 31
0
[ANNOUNCE] libX11 1.6.10
Adam Jackson (1): Fix XTS regression in XCopyColormapAndFree Alan Coopersmith (1): Fix spelling/wording issues Alex Henrie (1): Handle small final sigma in XConvertCase Marko Myllynen (1): Update Finnish compose sequences for SFS 5966:2019 standard Matthieu Herrb (2): Change the data_len parameter of _XimAttributeToValue() to CARD16 libX11 1.6.10 Peter
2004 Nov 23
1
problem with machine joining domains
Hi there. I have a problem with joining machines to a ldap/samba domain. originally I had errors saying can't find root user to auth, which is solved, but now when a machine tries to join the domain I get an error saying "user is not found" however the machine is added and the logs show no problems as all authentication is successfull can anybody give some insight ? -- Henti