Displaying 5 results from an estimated 5 matches for "exammpl".
Did you mean:
exampl
2000 Jun 08
1
creating models from "Objects" in R's environment
...R using the downloadable
package called "tree".
It is mentioned in the R documentation that Objects are created and
stored in the R environment by name.
So I have saved all the objects formed during the creation of a tree model
using the R command:
dump(objects(),"Z:\\Project\\Exammples\\Output\\outputTree.txt");
Here's a snapshot of the output file outputTree.txt:
"hc" <-
structure(list(merge = structure(c(-1, -10, -12, -14, -18, -20,
-22, -24, -26, -28, -30, -33, -36, -38, -40, -42, -44, -49, -52,
-54, -56, -58, -60, -62, -64, -66, -68, -72, -74, -77...
2000 Jun 08
1
creating models from "Objects" in R's environment
...R using the downloadable
package called "tree".
It is mentioned in the R documentation that Objects are created and
stored in the R environment by name.
So I have saved all the objects formed during the creation of a tree model
using the R command:
dump(objects(),"Z:\\Project\\Exammples\\Output\\outputTree.txt");
Here's a snapshot of the output file outputTree.txt:
"hc" <-
structure(list(merge = structure(c(-1, -10, -12, -14, -18, -20,
-22, -24, -26, -28, -30, -33, -36, -38, -40, -42, -44, -49, -52,
-54, -56, -58, -60, -62, -64, -66, -68, -72, -74, -77...
1997 Feb 24
1
libX11
...programs which use functions provided by libX11
may allow users to obtain elevated privileges.
One of the many examples of flawed code in X11R6.1, in this case from
GetDflt.c reads:
if (ptr = getenv("HOME"))
(void) strcpy(dest, ptr);
While the corrected code for this particular exammple in X11R6.3 reads:
if (ptr = getenv("HOME")) {
(void) strncpy(dest, ptr, len);
dest[len-1] = ''\0'';
Note that this code correctly adds a null character at the end of the
string after the strncpy.
Impact
~~~~~~
Depending on platform and X11 release, ind...
2005 Mar 08
1
New Help Site - cut down on Mailing List questions
This is a re-post as it was pointed out that I replied to a different
thread instead of creating a new post. Sorry for the additional traffic.
Mike
Dear All,
I understand the excitement surrounding a service like Asterisk, and how
easy it is to jump in and ask a heap of questions. I also know how
frustrating it can be dealing with a 200+ post per day mailing list as one
of the question
2001 Jul 04
3
by/ NA/ barplot
Colleagues
----------------------------------
System info:
Version 1.3.0 (2001-06-22) on NT
ESS v. 5.1.18 using emacs ver. 20.4
----------------------------------
I have generated an object (class = by) with NA values and want to plot
the output as a bargraph:
x2 <- by(scl.nos, species, sum)
These data are summed counts of fish by species
> x2
INDICES: AGI
[1] 0.729927