Displaying 20 results from an estimated 2073 matches for "fancy".
2012 Jul 26
1
How to draw fancy image in R?
Hi,
I am working on reporting and need some fancy image instead of barplot, pie
etc. Like Clock and Speedometer. How can i draw myself in R?
Regards
--
View this message in context: http://r.789695.n4.nabble.com/How-to-draw-fancy-image-in-R-tp4637866.html
Sent from the R help mailing list archive at Nabble.com.
2010 Apr 11
0
plotting rpart objects, text.rpart, fancy option
I have created plots of rpart objects with the fancy option for text.rpart
("fancy" creates ellipses and rectangles and labels branches with splitting
criteria). The ellipses and rectangles are supposed to "interrupt" the tree
lines (as seen in Therneau and Atkinson 1997, page 48, Fig. 18,
http://www.mayo.edu/hsr/techrpt/61.pdf),...
2009 Dec 02
4
Latency Monitor
Does anyone know of a utillity I can run on a server to periodically
ping several hosts and record the result? Does not need to be
anything fancy at all.
Matt
2007 Feb 27
0
plotting rpart objects - fancy option
Hi all,
I'm trying to create nice plots of rpart objects. In particular, I'd
like to use the "fancy" option to text() that creates ellipses and
rectangles at the splits and endnotes, respectively. This worked fine in
the past, but now the ellipses do not interrupt the original tree lines
anymore but overlay them (see attached ps file). I'd like it to look the
way Figure 18 on page 49...
2008 May 09
1
Is it possible to do fancy area plots?
Does anyone have any ideas about how you could use R to produce a fancy area
plot like this one in the NY Times? http://tinyurl.com/6rr22g
Regards,
Sean,
[[alternative HTML version deleted]]
2007 Sep 20
1
Locale problems with too-fancy quotes in Windows CMD.exe
'Fancy' quotes are displayed incorrectly when running R from Windows'
CMD shell (Start -> Run -> CMD; latin small letter ae and capital
letter AE; as a script or interactively)). Is this a system
configuration issue, and if so how can I correct it?
C:\R>Rscript -e sQuote('x')
[1]...
2010 Feb 26
11
Temperature sensor
Does anyone know of a cheap temperature sensor that will work with
Linux? I don't need a fancy monitoring appliance, I just want a simple
sensor that I can connect to one of my monitoring servers to let me know
if the server room is getting hot.
--
Bowie
2003 Nov 17
1
rpart postscript graphics, Mac OS
I am running R on Mac OS X 10.2x. When I create
postscript graphics of rpart tree objects, a tiny part
of the tree gets trimmed off, even when it has only a
few terminal nodes. This happens even without fancy
but worse if fancy=T. (This doesn't happen with
boxplot, scatter plots, etc.) How do I fix this?
postscript("tree.eps")
plot(davb.tree, u=T)
text(davb.tree, use.n=T, fancy=F)
dev.off()
Thanks
Kais
2013 Sep 09
0
[LLVMdev] Let's not depend on terminfo / curses?
...t keeps the old logic. Are there any objections to that?
>
(And since there are probably fewer shells on OS X, would anyone mind if
> --enable-curses=no --enable-terminfo=no was the default on OS X? And since
> even git can get away with it, maybe on Linux too?)
>
If this is *just* for fancy make output, I'd say be gone with it. But Clang
could also depend on it for fancy error reporting (does it?), which is a
different matter. I don't really mind fancy output either way.
cheers,
--renato
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http:...
2008 Jul 20
2
Conditionally Updating Lattice Plots
...lling it correctly. I have a nagging
sense too that the "real" way to do this is with a non-standard use of
panel.superpose but I don't quite see how to do that from available
examples.
TIF for any suggestions, Bryan
************ Example: a function then, the call to the function
fancy.lm <- function(x, y, fit = TRUE, resid = TRUE){
model <- lm(y ~ x)
y.pred <- predict(model) # Compute residuals for plotting
res.x <- as.vector(rbind(x, x, rep(NA,length(x)))) # NAs induce breaks in
line
res.y <- as.vector(rbind(y, y.pred, rep(NA,length(x)))) # after Fig 5.1 of...
2008 Mar 06
4
PXELINUX "Fancy" advanced menu question
Hello.
I am trying to run advanced dialog-like menus from com32.
But I can not boot anything... ? it always fails. :-)
So, my /path/to/pxelinux.cfg/default looks like this:
--------------8<--------------
DEFAULT pxemenu/fancy.c32
PROMPT 0
IMPLICIT 1
TIMEOUT 600
LABEL test
MENU LABEL Test
KERNEL suse10_3/vmlinuz
APPEND initrd=suse10_3/initrd.img ....(and so on)....
--------------8<--------------
Now, my fancy.menu looks like this:
--------------8<--------------
[main]
title=" Main Menu "
it...
2003 Dec 15
3
Outgoing calls for a fancy address book app
Hi !
I'd like to connect phpgroupware to asterisk: when a user click on a phone
number, his phone rings and he gets connected to the number he just clicked.
I've tried by putting various files in /var/spool/asterisk/outgoing, without
results (we are using SIP phones + CAPI channels).
Is there a way to do that ?
(If it's impossible (something impossible in *, LOL ?!?) I will
create
2015 May 06
3
VirtIO drivers and CentOS 5.4(Final)
...o a newer rev. So you keep
> your
> design environment static - all parts of it. We're talking business
> process
> here, not some stand-alone, uninformed PHB decision.
>
I can understand you - on a smaller scale...
<rant>
I have a couple of boxes with NVIDIA cards and fancy screen setup. I have
to use NVIDIA proprietary driver, open source driver does not support
configuration. Darn Nvidia never released enough information about their
chip's internals for open source developers to be able to write more
versatile driver. I hate Nvidia for that. I love their competi...
2006 Jul 13
0
I''m not the biggest fan of rants but, anyone fancy responding to this?
There (yet) another discussion going on on the O''Reilly web logs about J E5, complexity and the competitors (i.e. Rails et al). See http://www.oreillynet.com/windows/blog/2006/07/the_beginning_of_the_end_for_j.html.
Seems this was spawned by my own article available at: http://www.soaranch.com/articles/2006/7/11/soa-and-rails-part-1.html.
My response to this discussion is at:
2006 Apr 05
0
Fancy MySQL footwork
Database structure as follows:
t1 -> t2
-> t3 -> t4
select * from t1;
+----+-------+-------+
| id | t2_id | t3_id |
+----+-------+-------+
| 1 | 1 | null |
| 2 | null | 1 |
| 3 | null | 2 |
+----+-------+-------+
select * from t2;
+----+-------+
| id | title |
+----+-------+
| 1 | "hat" |
+----+-------+
select * from t3;
+----+-------+
| id | t4_id |
2006 Jan 06
1
How to make fancy urls (like basecamp clientx.clientsection.com]?
Im writing a app, and i wanted to have something like basecamp urls for
a account of the user of the user.
2009 Jun 19
1
Fancy Ticks in Plots
Dear All,
I am pretty satisfied with R for my plotting, but there are a few
subtleties which I cannot figure out.
Consider figure 1 in the paper at the link below
http://cxnets.googlepages.com/univ_citations.pdf
Can I have the same kind of ticks in an R-generated figure (that is to
say: ticks along the 4 axis, and in a log-log plot I'd like a larger
tick for any power of 10).
I did a bit
2009 Nov 06
1
Fancy quotes on Windows
Hi,
I don't use Windows as my primary OS anymore, so didn't notice this
until recently. In R-2.10.0 under Windows useFancyQuotes is FALSE by
default, but this doesn't seem to affect the rendering of (text) help pages.
This is not a problem if I run via the Rgui or Rterm (via DOS prompt),
as the help pages are rendered in a popup window that understands
directional quotes. However, if I run under emacs/ESS, the...
2008 Jan 06
0
Some repo fancy footwork?
I am looking at K12LTSP-EL5 which is Centos 5 based. Supposedly their
disc2 maps to Centos 1of6 and so forth. I have a repo of the Centos 5.1
isos: /centos/5/os/i386
The question is can I put the K12LTSP disc 1 in a directory:
/centos/k12ltsp-el5/i386 then with some logical link magic make this
directory appear to have all 7 CDs worth of content? Or put the k12
disc 1 somewhere else
2005 Jun 05
0
fancy dump_fs for nfsmount
The dump_fh() function in nfsmount can be misleading: always
mentions NFS_FHSIZE as size, but can print more,
can print nothing if passed less than 8 bytes.
This is a more robust implementation also suitable
for printing datastructures other than the file handle,
with ASCII rendering as bonus; output like so:
stuff: 0xbfffe41c, length 30
0000: 53 75 6e 20 4a 75 6e 20 20 35 20 31 34 3a 31 32