Displaying 20 results from an estimated 375 matches for "apropo".
Did you mean:
apropos
1997 May 23
0
R-alpha: apropos() available
Martin and I have `written' a function apropos() for finding all objects
with names matching pattern. I attach code and documentation. Perhaps
one could include it in the distribution proper.
We are not sure about returning the position in the search list along
with the matching names found. Martin thinks it should be on by
default, I thin...
1998 Oct 16
0
Reisegutschein - Angebot der Woche
apropos reisen
Urlaub ganz in Ihrer N=E4he !!
Holen Sie sich Ihren Reisegutschein
http://apopos.at/Gutschein/
Unser Angebot der Woche
http://apropos.at/Angebot/angebot.htm
apropos... Ihr Spezialist f=FCr
------------------------------------------------------
apropos... KUBA Total 1998/1999,
apropos.....
1998 Oct 16
0
Reisegutschein - Angebot der Woche
apropos reisen
Urlaub ganz in Ihrer N=E4he !!
Holen Sie sich Ihren Reisegutschein
http://apopos.at/Gutschein/
Unser Angebot der Woche
http://apropos.at/Angebot/angebot.htm
apropos... Ihr Spezialist f=FCr
------------------------------------------------------
apropos... KUBA Total 1998/1999,
apropos.....
2010 Apr 20
2
apropos and find
Hello,
I'm starting working myself in the use of R, reading M. J. Crawley, The
R Book. The problem I do encounter is concerning the commands apropos
and find:
> apropos(edit)
Fehler: is.character(what) is not TRUE
> find(edit)
Fehler: is.character(what) is not TRUE
I get the same error message typing anything else instead of "edit".
The command ?edit seems to work well.
What could be the reason for that I can't use apop...
2006 Dec 14
1
A possible improvement to apropos
Hello all,
I've had the following apropos alternative in my ~/.Rprofile for some
time, and have found it more useful than the current version.
Basically, my version ignores case when searching.
If others find this useful, perhaps apropos could be suitably patched
(and I'd be willing to create such a patch).
+ seth
Here is my versio...
2006 Dec 22
1
apropos changes in r-devel: intended feature or bug?
The old apropos started with:
if (!is.character(what))
what <- as.character(substitute(what))
The new one has:
if (character.only)
stopifnot(is.character(what))
else what <- as.character(substitute(what))
i.e., the check for is.character(what) is missing. This has the effect
t...
2007 Apr 11
1
Sort output of apropos
A further improvement to apropos() would be to sort the output.
Currently, the output of apropos is in the order found on the search
list and this will rarely be useful to the user.
All that is needed is a sort(x) at the end of the function.
+ seth
--
Seth Falcon | Computational Biology | Fred Hutchinson Cancer Research Cente...
2002 Feb 14
1
apropos("plotmath") curiousity
?plotmath produces the helpscreen for plotmath.
Why does apropos("plotmath") return only character(0)?
> apropos("plotmath")
character(0)
>
> version
_
platform i386-pc-mingw32
arch x86
os Win32
system x86, Win32
status
major 1
minor...
1998 Mar 21
1
Apropos names.
> To: R-devel@stat.math.ethz.ch
> Subject: Apropos names.
> From: Peter Dalgaard BSA <p.dalgaard@biostat.ku.dk>
> Date: 19 Mar 1998 18:44:14 +0100
> MIME-Version: 1.0
> Content-Transfer-Encoding: 7bit
> (from R-core)
> > Btw, why can't object names contain a `@'?
Reserved for future use?
> Speaking of name...
2004 Aug 30
2
suggestions motivated by quest for remainders
Some time ago I tried to find out how to compute remainders in R.
I now know that it is done with %%, which is documented in help('+'),
but before someone told me that I tried:
help('remainder'), help.search('remainder'), apropos('remainder')
help('modulo'), help.search('modulo'), and apropos('modulo')
all of which yielded nothing.
I then tried help.search('mod') which yielded many pages of output, none
of which seemed to be relevant to remainders.
1) Easy to implement small sugge...
2005 Feb 15
1
Apropos sprintf behavior
If changes to sprintf behavior are being considered, would it
be possible to allow some of the other K&R conversion
specifiers?
xX - for integer to hex conversion, and
c - for ascii value to character conversion
would all be useful for me.
Thanks, Steve Dutky
On Mon, 14 Feb 2005 11:02:20 +0000 (GMT), Prof Brian Ripley
wrote:
+On Mon, 14 Feb 2005, Wolfgang Huber wrote:
+
+> Dear
2009 Jun 17
4
searching help for partial matches
The situation is that I know there is a function and know approximately what
the name is, and want to find the exact name. Is there a way of searching
for near-matches (similar to unix apropos). For example, I know there is a
function called something like allequal (or allequals or AllEquals or...).
But ?allequal, etc, return nothing, only if I remember the name can I get
help via ?all.equal.
Thanks
--
View this message in context: http://www.nabble.com/searching-help-for-partial-mat...
2010 Nov 25
1
Apropos the day...
Since today is American Thanksgiving, I want to thank:
(a) R-core for all of their efforts to produce what is, IMHO,
the best statistical software around, not simply for the
convenience of doing more, better, quicker, but also
because it changes the landscape in the way one
thinks about data analysis. It's a fantastic playground
for a statistician and I enjoy using it
2002 Jul 12
1
Sweave problem with recursive call, Add.
...- next part --------------
268a269,270
>
> ocf <- character()
285,286c287,298
<
< tmpcon <- textConnection("output", "w")
---
>
> options(warn=-1)
> if (is.finite(max(as.integer(sub("output","",apropos("output"))),na.rm=TRUE))) {
> oc <- max(as.integer(sub("output","",apropos("output"))),na.rm=TRUE)+1
> } else {
> oc <- 0
> }
> options(warn=0)
>
> tmpcon <- textConne...
2011 Oct 27
0
Re: Keylogger question
...> where you can search on keywords or simply scroll through the list, or,
> if you already know the keyword, pipe it into grep:
>
> ps -ef | grep '\.exe'
>
> will show you all the .exe programs that are currently running. If you
> want to know more about a program, apropos and man are your friends:
>
> apropos wine
> man wine
>
> apropos shows one line describing anything that has your search term in
> the first line or its man page:
>
> $ apropos wine
> msiexec (1) - Wine MSI Installer
> notepad (1) - W...
2002 Jul 12
1
Sweave problem with recursive call, Add.
...- next part --------------
268a269,270
>
> ocf <- character()
285,286c287,298
<
< tmpcon <- textConnection("output", "w")
---
>
> options(warn=-1)
> if (is.finite(max(as.integer(sub("output","",apropos("output"))),na.rm=TRUE))) {
> oc <- max(as.integer(sub("output","",apropos("output"))),na.rm=TRUE)+1
> } else {
> oc <- 0
> }
> options(warn=0)
>
> tmpcon <- textConne...
2011 Oct 26
1
Re: Keylogger question
micdhack wrote:
> My wow account was hacked and since i logged in more from ubuntu than windows i wanted to ask if it is possible a keylogger to be installed through wine and if it could start automatically to monitor the system each time linux starts or each time i start some wine application.
> By the way i used antivirus to scan linux and wine directories and nothing was found
In my
2000 Jun 08
1
Undocumented functions (was: Dates on Graphics)
At 19:48 07/06/00 +0200, Friedrich Leisch wrote:
>>>>>> On Wed, 7 Jun 2000 09:41:23 -0700 (PDT),
>>>>>> Thomas Lumley (TL) wrote:
>
>
>TL> Some of this can be done with apropos(), but I don't think you can
keyword
>TL> search from inside R. It would be nice.
>
>
>help.search() might do what you want ...
>
>.f
Yes, but help.search() looks in the documented functions, whereas Yves's
concern was about the functions which are not documented. apr...
2009 May 18
3
Parsing configuration files
Dear list,
Is there any functionality in R that would allow me to parse config files?
I have trie ??config and apropos('config') without succes, and also search
the R package site.
Mvh.
Marie
[[alternative HTML version deleted]]
2009 May 13
3
Comments on draft TipsAndTricks/InstallWebminRepo page
Apropos http://wiki.centos.org/TipsAndTricks/InstallWebminRepo
Suggested changes (mostly nit-picky :-) ...
--------------------------------------------------------------------
Change:
Webmin is a web-based interface ...
to:
[http://www.webmin.com/index.html WebMin] is a web-based interface ...
------...