similar to: grep

Displaying 20 results from an estimated 400 matches similar to: "grep"

2024 Jul 12
1
grep
Could not get "which" to work, but my grep worked. Thanks. > which(grep("very|somewhat",names(goprobit.p$est))) Error in which(grep("very|somewhat", names(goprobit.p$est))) : argument to 'which' is not logical > grep("very|somewhat",names(goprobit.p$est)) [1] 6 7 8 9 10 11 12 13 28 29 30 31 32 33 34 35 50 51 52 53 54 55 56 57 On 7/12/2024
2024 Aug 02
1
grep
?s 02:10 de 02/08/2024, Steven Yen escreveu: > Good Morning. Below I like statement like > > j<-grep(".r\\b",colnames(mydata),value=TRUE); j > > with the \\b option which I read long time ago which Ive found useful. > > Are there more or these options, other than ? grep? Thanks. > > dstat is just my own descriptive routine. > > > x > ?[1]
2024 Jul 12
0
grep
Now I've found another way to make it work. All I need is to pick up the names in the column (x.1.age...). > v<-pr(goprobit.p); v Maximum-Likelihood Estimates weighted = FALSE iterations = 5 logLik = -14160.75 finalHessian = TRUE Covariance matrix is Robust Number of parameters = 66 Sample size = 17922 est se t p g sig x.1.age 0.0341 0.0138 2.4766 0.0133 -3.8835e-04 ** x.1.sleep
2024 Aug 02
2
grep
Good Morning. Below I like statement like j<-grep(".r\\b",colnames(mydata),value=TRUE); j with the \\b option which I read long time ago which Ive found useful. Are there more or these options, other than ? grep? Thanks. dstat is just my own descriptive routine. > x ?[1] "age"????????? "sleep"??????? "primary"????? "middle" ?[5]
2024 Jul 12
2
grep
Thanks. In this case below, what is "x"? I tried rownames(out) which did not work. Sorry. Does this sound like homework to you? On 7/12/2024 5:09 PM, Uwe Ligges wrote: > > > On 12.07.2024 10:54, Steven Yen wrote: >> Below is part a regression printout. How can I use "grep" to identify >> rows headed by variables (first column) with a certain label. In
2024 Jul 12
1
grep
Below is part a regression printout. How can I use "grep" to identify rows headed by variables (first column) with a certain label. In this case, I like to find variables containing "somewhath", "veryh",?"somewhatm", "verym", "somewhatc", "veryc","somewhatl", "veryl". The result should be an index 6:13 or
2024 Jul 12
1
grep
On 12.07.2024 10:54, Steven Yen wrote: > Below is part a regression printout. How can I use "grep" to identify > rows headed by variables (first column) with a certain label. In this > case, I like to find variables containing "somewhath", > "veryh",?"somewhatm", "verym", "somewhatc", "veryc","somewhatl",
2024 Jul 12
0
grep
which(grepl(....)) looks odd. Doesn't grep by itself return the correct vector of indices? Regards, Jorgen Harmse.? Message: 5 Date: Fri, 12 Jul 2024 17:42:05 +0800 From: Steven Yen <styen at ntu.edu.tw <mailto:styen at ntu.edu.tw>> To: Uwe Ligges <ligges at statistik.tu-dortmund.de <mailto:ligges at statistik.tu-dortmund.de>>, R-help Mailing List <r-help at
2007 Jan 05
1
[non glx_ftp method support in compiz]
I'm currently using r300_dri driver (R9600 card). Compiz use glx_ftp and AIGLX(7.2RC2) unstable with it, it's result in system hardlock very often. Just trued veryl with --use-copy option, and it's very stable for me now. So nonftp method support in compiz would be very desirable. Good luck.
2007 Oct 10
1
question on grep
Is there a command line option on grep that says count ALL occurances on a line not just the first one??? echo "jerry jerry" | grep -c jerry only returns 1 and not 2. Looking at the man page I did not see anything like that. Thanks, Jerry
2006 Mar 07
2
grep page source
hi all, any one know how to grep page source by rails? i.e. i wanna grep html source from http://www.ruby-forum.com/ by ruby code. regards -- Posted via http://www.ruby-forum.com/.
2004 Jan 29
1
Variable substitution in grep pattern
Hi everibody. I'm working with a dataframe with many character vector in which each observation is made of one or more unique values. Example: > Licenza[56:58] [1] BSD License, GNU Library or Lesser General Public License (LGPL) [2] Qt Public License (QPL) [3] GNU General Public License (GPL) 66 Levels: ... Zope Public License As you can see, the observation can have one or more Licenses
2008 Aug 06
1
Matching a period in grep...
Hi folks, Can anyone enlighten me as to why I get the following when I search for ".csv" at the end of a string? > grep("\.csv$","Blah.csv",value=TRUE) [1] "Blah.csv" Warning messages: 1: '\.' is an unrecognized escape in a character string 2: unrecognized escape removed from "[\.]csv$" R reference for regular expressions says
2005 Mar 16
1
Bug#299810: logcheck: grep errors after latest update
Package: logcheck Version: 1.2.35 Severity: normal I'm getting the following on two different Unstable boxen: ------------------------------------------------------------------------------ Subject: Cron <logcheck at bandit-hall> if [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck; fi
2013 Nov 28
1
Create email and grep the recieved emails.
I want to implememt auto mated email generation for every transaction. And then we will sent any uplods through our own emails. i wnat grep those email with attachments. This is very urgent for me. if any one know this please let me know. Thankyou for advance. Actually in paperlesspipeline they are did same functionslity. if you want check this url http://paperlesspipeline.com/ I
2010 Oct 15
1
grep pattern x, but not pattern y on the same line
Hi folks I have the command "find . | xargs grep 'mailx'", to search all files with "mailx" in contents. I wish to add a second condition that NOT contains string sven.aluoor at ubs.com on the same line. Every file which contains "mailx", but not the string sven.aluoor at ubs.com in the same line. cheers Sven
1999 Oct 11
1
if(grep())
Would anyone care to comment if this is the best solution to this problem? > trygrep <-function(x,y) + if(grep(x,y)) + print("yes") else + print("NO") > >trygrep("foo","bafoobar") [1] "yes" > > trygrep("foo","bar") Error in if (grep(x, y)) print("yes") else print("NO") : missing value
2009 Jul 18
0
Rép. : Re: grep: /proc/xen/capabilities: No such file or directory
Je suis actuellement absent. Je prendrai connaissance de votre message à mon retour le 3 août 2009. Cordialement T. Capuano _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2012 Dec 12
2
how to grep in r
Hi, I met this problem. Trade_Price_Band x 1 0-30 0.6237240 2 101-150 0.6743857 3 151-200 0.6778513 4 201-300 0.6640293 5 301-400 0.6630991 6 31-50 0.6314547 7 401-500 0.6776249 8 500+ 0.6557705 9 51-75 0.6621073 10 76-100 0.6623469 I want to get the following matrix
2006 Dec 30
0
[Bug 527] New: the check make target has a greedy debug grep
https://bugzilla.netfilter.org/bugzilla/show_bug.cgi?id=527 Summary: the check make target has a greedy debug grep Product: iptables Version: unspecified Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: unknown AssignedTo: laforge@netfilter.org ReportedBy: