Displaying 20 results from an estimated 100 matches similar to: "prettyR arrives"
2008 Nov 14
3
Change Confidence Limits on a plot
Hi,
I am attempting to set the confidence limits on a ls means plot as follows:
mult<-glht(lm(effectModel, data=statdata, na.action = na.omit),
linfct=mcp(mainEffect="Means"))
meanPlot <- sub(".html", "meanplot.jpg", htmlFile)
jpeg(meanPlot)
plot(mult, main=NA, xlab=unlist(strsplit(Args[4],"~"))[1])
This produces 95% CIs by default but I would
2008 Oct 03
2
A strange behaviour of file.path in Windows? (PR#13119)
Full_Name: Enrico Pegoraro
Version: 2.7.2
OS: Windows (Vista or Xp PRO) Italian
Submission from: (NULL) (87.4.189.202)
If you send these lines of code:
outdir="c:/pippo"
file.path(outdir,"pluto.html")
R replies correctly:
[1] "c:/pippo/pluto.html"
But if you change the first steps to:
outdir=""
file.path(outdir,"pluto.html")
R replies
2011 Feb 01
1
Setting maximum value of the legend on an image.plot and animation
Hello,
I'm doing the following:
library(ncdf)
library(fields)
library(animation)
saline <- open.ncdf("salinity_1990.nc")
salt = get.var.ncdf(nc=saline, varid="Salinity")
# create an animation of the complete temporal domain in the ncdf file.
saveHTML({
for (i in 1:364) {
image.plot(salt[, , i])
}
}, img.name = "salinity.img",
2010 Oct 10
4
Start a mac program from wine
Hi,
I have a windows-based program that runs in wine & opens my native Mac-based Google Chrome browser when it opens a html document. Is it possible to do the same for another type of file, e.g., an mp3 file? What would I need to do to be able to do this?
Thanks and regards,
Anna.
2008 Nov 24
2
firstclass client 9.1 -- cannot load winebrowser
I have successfully installed and am running the win32 version of firstclass 9.106 (http://www.firstclass.com/Divisions/FAV13-0024FC95/?OpenItemURL=S047C50E4) client on wine 1.0.1 (lenny amd64). My problem occurs when the client attempts to open an html attachment:
Code:
err:winebrowser:get_url_from_dde Unabled to retrieve URL from string L"\""
err:winebrowser:wmain Usage:
2006 Sep 13
7
Mongrel spewing backtraces and nanosleeping
Hi list,
I''m seeing a couple of issues with Mongrel. I''m running FreeBSD 6.1 and
have previously been told that there are known conflicts between this
and Mongrel, yet I hope these issues will be resolved with time.
I''m overloading Mongrel with httperf on my local workstation. Mongrel is
started directly with the mongrel_rails command and there is only one
mongrel
2006 Mar 27
3
regular expression matching in routes.rb
All,
I have a route specified as:
map.connect '':folder/:filename'', :folder => /htmlfiles/, :controller =>
"eSimply", :action => "preview_HTML"
I expect it to invoke the "preview_HTML" action in the "eSimply"
controller.
Given an argument of "htmlfiles/xyz.html", it keeps saying that it can''t
find an
2008 Oct 24
2
plotrix and prettyR
Hi folks,
Both plotrix and prettyR have been updated. plotrix now has the "Matlab"
style dotplot that was requested not long ago on the list, provided by
that intrepid duo, Barry Rowlingson and Rolf Turner. Mike Cheetham has
contributed an implementation of the Piper diagram, also in response to
a request. prettyR has finally learned how to display SPSS value labels
in the xtab and
2008 Nov 06
0
new plotrix and prettyR
Hi all,
I'm noting the appearance of new versions of plotrix and prettyR as I
found a bug in the "brkdn" function that messed up the order of
"value.labels" if they had been imported from an SPSS data file. For
anyone using "brkdn", please upgrade to the new version of prettyR
(1.3-5) if you are importing SPSS data files. If anyone discovers other
problems,
2008 Apr 03
1
prettyR 25% quartile, 75% quartile
I am using the describe function in prettyR. I would like to add the
25% 75% quartiles to the summary table
how do I do this
I have tried
describe(x.f, num.desc=c("mean", "median", "sd", "min", "max",
"skewness", "quantile(x.f, na.rm=T, probs=seq(0.25, 0.75))",
"valid.n"))
help
--
Let's not spend our time
2009 Feb 13
2
odfWeave & prettyR
Hello,
I've been trying to use odfWeave and prettyR packages to create documents with both text and graphs, but so far I
haven't been very lucky...
With the function R2html () in prettyR package, when I try to use a source file, which works perfectly if I run it
directly form R using "source("file")",
it works for the first part and then it makes a mess, i guess
2010 Jun 06
3
prettyR
Hi all,
does anyone have any practical examples of how this command can be used in prettyR?
add.value.labels(x,value.labels)
I mean, can we have the SPSS style of using numbers and/or labels if we want to?
Thank you for your time
Jason
Dr. Iasonas Lamprianou
Assistant Professor (Educational Research and Evaluation)
Department of Education Sciences
European University-Cyprus
P.O. Box 22006
2009 Feb 12
1
Latex or html output for freq() in prettyR
Hi Everybody
I need to create a lot of frequency tables with frequencies and percentages
(and cumilative freq and % as well) for a report. freq() in prettyR give
more or less what I need.
I am trying to export the result of freq() to html but the html doesn't look
look the console output.
See the following example
library(prettyR)
library(Hmisc)
x <- matrix(sample(1:3, 12,
2004 Nov 24
0
Call External Program When SIP Message Arrives
Hi All.
Is there a way to call an external program/script when a SIP SUBSCRIBE message is received by
Asterisk?
I'm using ser-0.8.99-dev18 and I'd like to pass along SIP SUBSCRIBE messages that the ser proxy
received from UAs so that Asterisk can do things in response.
Regards,
Paul
__________________________________
Do you Yahoo!?
Meet the all-new My Yahoo! - Try it today!
2006 Mar 13
0
Incoming Call keeps ringing when the second call arrives
Hi,
I am new to this group.I searched for my problem in the forum but could not
find any solution. So here it goes:
In my work place we have an asterisk box. Everything works fine except the
fact that when I first call the work phone number from my cell the
auto-attendend works fine but If I hang-up and call the same number again,
the call keeps ringing instead of auto-attendent answering.
I also
2007 Sep 18
2
Running a script when a mail arrives
Hi,
I'm trying to execute a script when a mail arrives in a given user's
mailbox. Something like .dovecot.sieve.
The reason I'm not using sieve itself is that I need to do stuff on mail
arrival, which is beyond sieve's features.
So is there a way to tell dovecot to run a script when a mail arrives in
a certain mailbox? Optionally a solution to forward the whole mail to a
2016 Oct 28
0
Dovecot POP3 - Enable POP for mail that arrives from now on
Hello,
Someone knows some method for implement feature like Gmail and Zimbra, about
download POP3 messages only that "arrives from now" ?
Regards,
Ricardo Machini
2011 Jul 06
3
When CentOS 6 arrives ...
What is the best way to install CentOS 6?
Is there an upgrade facility from CentOS-5.6?
If so, how does this compare with a clean installation?
--
Timothy Murphy
e-mail: gayleard /at/ eircom.net
tel: +353-86-2336090, +353-1-2842366
s-mail: School of Mathematics, Trinity College, Dublin 2, Ireland
2008 Jul 23
4
Using PrettyR to produce LaTeX output
Hello everyone. I am new to R, so please bear with me. I am trying to find
an easy way to export descriptive statistics and other information about my
data frame to a LaTeX format.
I have found the describe function in PrettyR to be very helpful in
producing results in the exact format I'm looking for. However, the value
of the describe function is a LIST (rather than a data frame) which I
2014 Jul 24
8
[Bug 10738] New: report --stats output when termination signal arrives
https://bugzilla.samba.org/show_bug.cgi?id=10738
Summary: report --stats output when termination signal arrives
Product: rsync
Version: 3.0.9
Platform: x64
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P5
Component: core
AssignedTo: wayned at samba.org
ReportedBy: