Displaying 20 results from an estimated 11000 matches similar to: "Timed Out or Disconnect Errors on emails with attachments"
2008 Jun 17
6
Insert raster image into an R graphic
Dear useRs:
Is there a way to include a raster image (e.g., .gif, .jpg, .bmp) representing
a company logo, a school logo, etc. into an R graphic? For example, it would be
nice to be able to include the logo of the school into the charts that a
student produces for her dissertation. Similarly, while working on a
competitive analysis, it would be nice to be able to replace the names of the
2007 Nov 13
1
R: Query an Access database based on a date attribute
It seems that Access needs that you surround the dates with a # symbol.
You probably need something like.
res <- sqlQuery(channel, "select * from test_table where market = 'atl-bos'
and competitor = 'delta' and dd = #2007-11-20#")
Hope this helps,
Stefano
-----Messaggio originale-----
Da: r-help-bounces at r-project.org
[mailto:r-help-bounces at r-project.org]Per
2007 Oct 30
1
Place a string into the header/footer of a pdf file generated during a plot session
Dear useRs,
Do you know, by any chance, if it is possible to write a string in the
header/footer of a pdf file created during a plot session? To make sure that I
know what R script generated a certain chart, I would like to add the path to
the working directory into the header/footer of the corresponding pdf file.
Thank you.
Tudor
--
Tudor Dan Bodea
Georgia Institute of Technology
School of
2007 Nov 12
2
Query an Access database based on a date attribute
Dear useRs,
I would like to query an Access database through R based on a date attribute
but, unfortunately, I fail to do so. For example, the table test_table of the
test.mdb looks like:
ID cd market competitor dd price
1 1 2007-11-20 atl-bos delta 2007-11-20 210
2 2 2007-11-20 atl-bos delta 2007-11-21 190
3 3 2007-11-20 atl-bos delta 2007-11-22
2008 Jul 17
3
Hiding information about functions in newly developed packages
Dear UseRs:
I intend to write a package to handle the basic operations a revenue management
analyst has to deal with on a regular basis (e.g., demand untruncation,
capacity allocation, pricing decisions, etc.). Following the directions posted
by Peter Rossi (Making R Packages under Windows: A Tutorial, January 2006) I
was able to build an interim package that currently consists of one simple
2011 Apr 08
4
Rpart decision tree
Dear useRs:
I try to plot an rpart object but cannot get a nice tree structure plot. I
am using plot.rpart and text.rpart (please see below) but the branches that
connect the nodes overlap the text in the ellipses and rectangles. Is there
a way to get a clean nice tree plot (as in the Rpart Mayo report)? I work
under Windows and use R2.11.1 with rpart version 3.1-46.
Thank you.
Tudor
...
2008 Jul 06
1
Exception Handling
Dear useRs:
Please provide me with your thoughts on an issue related to the design of a
production level system. For example, let?s suppose that I need to run the
same R script for a finite sequence of items (e.g., in the energy industry, I
may need to asses the profitability of all gas stations in the state of
Florida). For each of the items, the R script accesses some remote databases,
gets
2008 Feb 12
3
regular expression for na.strings / read.table
Dear all,
I am working with a csv file.
Some data of the file are not valid and they are marked with a star '*'.
For example : *789.
I have attached with this email a example file (test.txt) that looks like
the data I have to work with.
I see 2 possibilities ..thast I cannot manage anyway in R:
1-first & easiest solution:
Read the data with read.csv in R, and define as na strings
2007 Nov 13
2
Query an Access database based on a date attribute (Tudor Bodea)
Tudor Bodea asked:
>In this context, I try to get all the records for which market is atl-bos,
>competitor is delta and dd is 2007-11-20 (first record above). To do this I used
>># channel <- odbcConnectAccess("test.mdb")
>>res <- sqlQuery(channel, "select * from test_table where market = 'atl-bos'
>>and competitor = 'delta' and dd =
2010 Jun 12
2
mob (party package) question
Dear useRs:
I try to use mob from the party package (thanks Achim and Co.!) to model
based recursive partition a data set. The model is a logistic regression
specified with model=glinearModel and family=binomial(). Running mob
results in a few warnings of the type: In glm.fit ... algorithm did not
converge. As I speculate that this may be due to an insufficient number of
iterations I am
2012 May 15
2
rpart - predict terminal nodes for new observations
Dear useRs:
Is there a way I could predict the terminal node associated with a new data
entry in an rpart environment? In the example below, if I had a new data
entry with an AM of 5, I would like to link it to the terminal node 2. My
searches led to http://tolstoy.newcastle.edu.au/R/e4/help/08/07/17702.html
but I do not seem to be able to operationalize Professor Ripley's
suggestions.
Many
2012 Oct 01
2
mlogit and model-based recursive partitioning
Hello:
Has anyone tried to model-based recursive partition (using mob from package
party; thanks Achim and colleagues) a data set based on a multinomial logit
model (using mlogit from package mlogit; thanks Yves)?
I attempted to do so, but there are at least two reasons why I could not.
First, in mob I am not quite sure that a model of class StatModel exists for
mlogit models. Second, as
2004 Jan 10
1
cannot read messages(popup) but with root.
Hi!
The messages samba receives over the Lan are owned by user nobody, I can
open them only with root.
ls -l /tmp/ | grep msg
-rw------- 1 nobody nobody 7 Jan 10 18:26 msg.lb34mU
-rw------- 1 nobody nobody 6 Jan 10 18:22 msg.YycNY5
How can change (not manualy) permissions of this incoming files so that
they are available to other users? (Make them let's say
2012 Oct 30
1
Data set BregFix in package flexmix
Dear list:
I would like to recreate how the artificial data set BregFix was generated
in package flexmix (thanks Bettina and Friedrich). The data set is
thoroughly described in Grun and Leisch's Computational Statistics & Data
Analysis 51(11) :5247-5252 but references to the appropriate seed number(s)
are missing (providing these details was certainly beyond the scope of the
authors'
2008 Sep 27
1
Append selectively to components of a list
Dear R users:
Is there a way to append selectively to components of a list (if possible, loops are to be avoided)? To illustrate the point, in the example below, I would like to append 99 to vector b of the list l.
> l <- list(a=c(1), b=c(2,3), c=c(4,5,6))
> l
$a
[1] 1
$b
[1] 2 3
$c
[1] 4 5 6
As you may expect, the result should look like:
> l
$a
[1] 1
$b
[1] 2 3 99
$c
[1] 4 5
2004 Feb 24
2
Statistical Quality Control
Greetings,
I've been familiarizing myself with the features of R over the past few
days. I'm impressed with the quality and quantity of the features and
packages. One feature that I would be interested in would be a package for
statistical quality control. Does a package for statistical quality control
exist that I've been unable to locate?
If not, is anyone aware of efforts to
2007 Jun 04
2
Re: Ajax.Request question with JSON return
Do I need something like this:
eval(''('' + this.header(''X-JSON'') + '')'')
(taken from Cody Swann,
http://ajaxian.com/archives/prototype-extension-dynamic-script-pattern-support
).
I''m guessing my problem is simpler, and I''m leaving something small out
related to the header though.
Thanks for any help
-Mark
1. evalJSON:
2008 Sep 16
4
ubuntu hardy packages 32bit no tcltk support
Dear all,
I noticed that the r-base package for Ubuntu 8.04.1 do not have the
tcltk support compiled in. Would it be possible to correct this?
> echo "capabilities()" | R --no-save | tail -6
[Previously saved workspace restored]
> capabilities()
jpeg png tcltk X11 aqua http/ftp sockets libxml
TRUE TRUE FALSE TRUE FALSE TRUE
2009 Nov 19
2
Send the same message to list of users
Customer is delivering stuff over the ocean.
Time of delivery is between 1 month to 1.5 months.
So
customers need some sort of a tracking system ( hard to implement given
the conditions ) or he needs to let tjem know when the packages
arrived.
Customers in Europe all have mobile phones, while
senders in North America rarely have them ( they have answering
machines, though ). Could someone
2007 Mar 26
2
Rpm builders: Dovecot spec file
Maybe best asked to Axel...
I'm re-building my server from scratch (the old one was MDK 10.1 -> Mandriva
2006.0 with Postfix/Courier) and I want to install the latest versions
postfix/mysql/postfixadmin/dovecot/squirrelmail.
I've been building Dovecot (and postfix) from tarballs/srpm in the past so I
know more or less how it all fits together. But I wonder if 'old' patches