Displaying 20 results from an estimated 4000 matches similar to: "apropos and find"
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 version of apropos:
APROPOS <- function (what, where =
2013 Feb 24
1
one sample t-test
Hello,
I am reasoning about a question concerning the t-test for one sample. My
data includes 150 values (mean 10.07) which I want to compare to mu=9. A
tow-sided t-test yields
> t.test(data,mu=9)
One Sample t-test
data: data
t = 3.0099, df = 149, p-value = 0.00307
alternative hypothesis: true mean is not equal to 9
95 percent confidence interval:
9.368676 10.777991
sample estimates:
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
that 'what' can no longer be a character string generated by a
function call
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... COSTA RICA Natur pur 1998/1999,
apropos... Gelbe Seiten MITTELAMERIKA 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... COSTA RICA Natur pur 1998/1999,
apropos... Gelbe Seiten MITTELAMERIKA 1998/1999
apropos...
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 Center
http://bioconductor.org
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 4.1
year 2002
2005 Aug 30
1
graphics
Hello,
I guess a have a very simple problem though up to now couldn't solve it:
I want to plot two datasets wihtin one plot like plot(x) provides it for
one dataset(type="b" that is: points connected by lines).
Example data 'x':
Befragung1 Befragung2 Befragung3 Geschlecht
2.25 2.34 1.78 weiblich
1.34 3.45 2.23 maennlich
The two rows of the example above
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 think it should be off so that the functions does the
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 names. I've been thinking whether it would
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
2009 Apr 10
3
Apropos Agent 6.5 crashing when launched
When running it from the Desktop icon a taskbar button comes up with the hour glass for about 20 seconds and disappears. So I ran the desktop shortcut's command in a terminal and go this:
fixme:virtual:NtAllocateVirtualMemory MEM_WRITE_WATCH type not supported
fixme:ole:CoGetContextToken stub
fixme:shell:URL_ParseUrl failed to parse L"System"
fixme:shell:URL_ParseUrl failed to parse
2002 Jul 12
1
Sweave problem with recursive call, Add.
This diff would be better.
Gunnar
-------------- 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))) {
2002 Jul 12
1
Sweave problem with recursive call, Add.
This diff would be better.
Gunnar
-------------- 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))) {
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.
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 ...
--------------------------------------------------------------------
Change:
When you install
2013 Jul 14
1
There is an error in chmod(1)
There is an error in the chmod(1) man page.
tingo at kg-v2$ uname -a
FreeBSD kg-v2.kg4.no 8.3-STABLE FreeBSD 8.3-STABLE #6: Fri Apr 27 23:50:55 CEST 2012
root at kg-v2.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64
tingo at kg-v2$ apropos ^sticky
sticky(7) - sticky text and append-only directories
tingo at kg-v2$ man 1 chmod | grep sticky
1000 (the sticky bit). See chmod(2)
2007 Sep 06
3
kendall test
Hello,
I thougth that there is a function which does the kendall test in R,
I writed on the console apropos("kendall") and I didn't found anything can you tell me how could I do to use the kendall test?
Thanks.
_____________________________________________________________________________
l
[[alternative HTML version deleted]]
1999 Jun 15
2
ESS and R
For anybody who uses ESS with R, how do you invoke the vsize and nsize options
when you call R. I can't find any appropriate variables from an apropos.
Thanks,
Jord
--
Jordan Howarth CSIRO Mathematical and Information Sciences
mailto:jordan.howarth at cmis.csiro.au
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read