Displaying 20 results from an estimated 1000 matches similar to: "Excel files-suggested manual addition"
2002 May 09
3
read.table (PR#1535)
I downloaded the latest version of R (1.5.0) and issued a read.table() command
that used to work with (1.3.1). Unfortunately I erased 1.3.1 from my hard
drive after I downloaded R 1.5.0.
Here's the command and the error message I get under 1.5.0:
>
golub1<-read.table("C:/Microarrays/code/data_set_ALL_AML_train.txt",sep="\t",q
2003 Apr 04
2
Bug in %in% (match)
Hi,
Am I hitting some limit in match? Consider the following example:
> tst<-seq(100,125,by=.2)%in%seq(0,800,by=.1)
> sum(tst)
[1] 76
> seq(100,125,by=.2)
[1] 100.0 100.2 100.4 100.6 100.8 101.0 101.2 101.4 101.6 101.8 102.0
102.2
[13] 102.4 102.6 102.8 103.0 103.2 103.4 103.6 103.8 104.0 104.2 104.4
104.6
[25] 104.8 105.0 105.2 105.4 105.6 105.8 106.0 106.2 106.4 106.6 106.8
2003 Apr 04
2
Bug in %in% (match)
Hi,
Am I hitting some limit in match? Consider the following example:
> tst<-seq(100,125,by=.2)%in%seq(0,800,by=.1)
> sum(tst)
[1] 76
> seq(100,125,by=.2)
[1] 100.0 100.2 100.4 100.6 100.8 101.0 101.2 101.4 101.6 101.8 102.0
102.2
[13] 102.4 102.6 102.8 103.0 103.2 103.4 103.6 103.8 104.0 104.2 104.4
104.6
[25] 104.8 105.0 105.2 105.4 105.6 105.8 106.0 106.2 106.4 106.6 106.8
2010 May 04
1
strange behavior of RODBC and/or ssconvert
Dear All,
I have the following problem when reading files (a lot of them) in the
spreadsheetML format into R. The spreadsheetML format is an xml format
to allow easy import of multisheet data in Excel. As far as I can see,
a direct import into R (using the XML package) is not feasible. I use
the software ssconvert (included in Gnumeric) and call it from R. It
converts the spreadsheetML into xls
2013 Oct 04
0
R-help Digest, Vol 128, Issue 5
Hi Peter,
The ssconvert tool (part of gnumeric) is very good at converting spreadsheets to csv-files.
There is a wrapper in the "gnumeric" package on cran.
Cheers,
Thomas
> Date: Fri, 4 Oct 2013 09:08:50 +0100
> From: Barry Rowlingson <b.rowlingson at lancaster.ac.uk>
> To: Peter Maclean <pmaclean2011 at yahoo.com>
> Cc: "r-help at r-project.org"
2012 Apr 07
3
gnumeric/goffice: defective RPM from rpmforge ???
"yum update" output:
...............................
--> Running transaction check
--> Processing Dependency: libgoffice-1.so.2 for package: gnumeric
---> Package goffice.i386 0:0.6.6-1.el5.rf set to be updated
--> Finished Dependency Resolution
1:gnumeric-1.6.3-15.el5.2.i386 from installed has depsolving problems
--> Missing Dependency: libgoffice-1.so.2 is needed by
2011 Jan 07
1
print.citation, small bug?
Hi,
I use Sweave extensively in my consulting work. When submitting reports to
the scientists I work
with I like to use the citation function to reference any packages I use, to
give proper acknowledgement.
I noted in the documentation that a citation inherits from bibentry, and
indeed,
> citr<- citation()
> class(citr)
[1] "citation" "bibentry"
However, following
2004 Dec 20
2
R and Gnumeric?
Hi all,
A hopefully quick query. I was reading a posting over at
gnomedesktop.org on the latest release of Gnumeric 1.4:
http://gnomedesktop.org/node/2090
There is a mention there:
Improved accuracy:
While Gnumeric 1.2 was already the best available source for
accuracy in statistical calculations, Gnumeric 1.4 is even
better. We are cooperating with The R Project to
2007 Oct 23
2
gnumeric on CentOS 5
I'm trying to install Gnumeric using the kbsingh RPMs. Has anyone been
able to use these with CentOS 5?
Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
kbs-Extras-i386 100% |=========================| 951 B 00:00
kbs-Misc-i386 100% |=========================| 951 B 00:00
updates 100%
2009 Aug 24
6
CRAN (and crantastic) updates this week
CRAN (and crantastic) updates this week
New packages
------------
Updated packages
----------------
New reviews
-----------
This email provided as a service for the R community by
http://crantastic.org.
Like it? Hate it? Please let us know: cranatic at gmail.com.
2004 Feb 26
1
Gnumeric - 1 Excel - ?
Hi all,
As happens from time to time, discussions on this list appear regarding
the use of popular spreadsheets for statistical analysis. One such
thread (post of mine) is here:
http://maths.newcastle.edu.au/~rking/R/help/03a/6326.html
While not advocating such use, these discussions have referenced
articles that provide independent reviews of these applications and
issues of accuracy, etc.
2008 Jul 26
2
Re: Gnumeric rpm
On Sat, Jul 26, 2008 at 10:13 AM, Iain Lee <menelaus at spartica.net> wrote:
> Paul,
>
> Thanks your contribution, I too miss gnumeric. However, I get these errors
> and the installed gnumeric crashes on opening a gnumeric file:
>
> =============================================================================
> Package Arch Version
2009 Sep 10
1
(no subject)
Hi,
I would also be in favor of a stronger stance on licenses. In
industry, where we can really get in big trouble for violating a
license,
we often maintain internal repositories, or need to be careful about
filtering
what is used from CRAN. I think that is should really be a requirement
the package
authors commit to stating what the restrictions are on their packages.
Nicholas
On 10
2009 Sep 30
2
buglet in is.na?
Hi
the following example I think demonstrates the inconsistency
> f<-function(x) x
> length(f)
[1] 1
> is.na(f)
[1] FALSE
Warning message:
In is.na(f) : is.na() applied to non-(list or vector) of type 'closure'
The documentation states:
Arguments
x an R object to be tested.
value a suitable index vector for use with x.
And nowhere in the details was it implied (to me
2001 Sep 01
1
RE: [R] GUI support from R
Hi Duncan,
I've been looking around at GUI toolkits to use with Python (and by
extension R). I initially tried Tk, but was disappointed because there is no
consistent set of high level widgets. I've subsequently done some looking
at QT, wxWindows, and GTK. QT is out because I am a *commercial* user, and
I don't want to have a license hassle. GTK seemed to have a lower level of
2010 Aug 21
1
Help Choosing Start Values for nls
Hi all,
I'm trying to do a simple curve fit and coming up with some interesting
results I would like to get comment on.
So as shown below, tsR is my explanatory and response is... well... my
response.
This same data in gnumeric gets fitted with the curve "response=10078.4 +
1358.67 * ln (explanatory - 2009.07)
So I'm using nls with the start values supplied by gnumeric.
in
2003 Oct 22
2
Excel to R
I have Excel files containing data that I would like to move to R.
They are in the standard form of a one row header followed by
rows of data, one record per row EXCEPT that there are a few
rows of comments before the header. The number of rows of comments
varies. For Excel files of this form without comments I have had
success with:
require(RODBC)
z <-
2008 Jun 08
1
R and Gnumeric
Hi,
I just read the "Embedding R in Gnumeric" idea at
http://www.r-project.org/SoC08/ideas.html. On my side, I intend to add
as many statistics related plot types to the current gnumeric charting
engine as possible. We already have boxplots and partial support for
histograms. My immediate plans are to finish the histogram code and add
probability plots
2002 Dec 10
1
RGnumeric real time refresh?
I have data that comes in every 7 seconds or so and I'd like to display it in a spreadsheet, and
possibly take user input from the spreadsheet.
I have installed RGnumeric and written an appropriate R function that reads, manipulates and
displays the data by writing via RGnumeric to a spreadsheet. However, the results of this are
not displayed until the R function returns, so refreshing by
2000 Sep 01
3
Object size in bytes
Hi,
Is there a command that will give the total size of an R object in bytes?
thanks
Nicholas
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r-help-request at