Displaying 20 results from an estimated 1300 matches similar to: "Why does "summary" show number of NAs as non-integer?"
2005 Nov 02
2
RODBC and Excel: Wrong Data Type Assumed on Import
The first column in my Excel sheet has mostly numbers but I need to treat it
as character data:
> library(RODBC)
> channel <- odbcConnectExcel("U:/efg/lab/R/Plasmid/construct list.xls")
> plasmid <- sqlFetch(channel,"Sheet1", as.is=TRUE)
> odbcClose(channel)
> names(plasmid)
[1] "Plasmid Number" "Plasmid"
2007 Jun 12
3
Read Windows-like .INI files into R data structure?
I need to process some datasets where the configuration information was
stored in .INI-like files, i.e., text files with sections like this:
[Section1]
var1=value1
var2=value2
[Section2]
A=value3
B=value4
...
>From Google and other searches I haven't found any package, or function
within a package, that reads .INI files into an R list, or other data
structure.
Any suggestions, or
2007 Oct 31
2
Don't understand write.csv default: Why is column name for column of row names blank?
I've always been frustrated that R never puts a label on the column name for
a column of row names. This is usually the "key" in a database table, and
it sure would be nice to carry a "key" name along with the data instead of
the field being blank. So, why is it a good idea for it to be blank?
?write.csv says this:
CSV files
By default there is no column
2009 Nov 23
2
categorisation of continuous variables in R
Dear all,
I'm looking for a function comparable to switch, to categorize a
continuous variable in a few levels. Off course that can be done with
a series of ifelse statements, but that looks rather clumsy. I looked
at switch, but couldn't figure out how to use it for this. I guess
that's not possible, as it only works with characters or integers, not
with intervals.
Basically,
2006 Mar 16
2
french secondary boxplot
bonjour,
i'm a mathematic teacher and i have a question for R-developers :
is it possible to have (in the future) a boxplot with whiskers from
the first decile to the ninth decile, as usual in secondary french
schools... by example : boxplot(serie,range=-1) for french boxplot ?
cordialement,
jean-pierre
lyc?e jean zay
orl?ans, france
http://mathazay.free.fr/spip/
2005 Aug 15
1
Anything like dir.choose (similar to file.choose) in R?
Does R have a dir.choose function?
I can use file.choose like this as a kludge to get something like a
dir.choose, but a real dir.choose would be better:
cat("Select one of files in directory to process:\n")
filename <- gsub("\\\\", "/", file.choose())
basepath <- dirname(filename)
Windows provides a lower-level SHBrowseForFolder function to create such
2006 Aug 14
1
Help with workaround for: Function '`[`' is not in the derivatives table
# This works fine:
> a <- 1
> b <- 2
> c <- 3
> E <- expression(a * exp(b*X) + c)
> X <- c(0.5, 1.0, 2.0)
> eval(E)
[1] 5.718282 10.389056 57.598150
> D(E, "b")
a * (exp(b * X) * X)
> eval(D(E, "b"))
[1] 1.359141 7.389056 109.196300
# But if (a,b,c) are replaced with (A[1], A[2], A[3]), how can I get a
derivative
2007 Feb 08
1
Suggestion about "R equivalent of Splus peaks() function"
In 2004 there was this R-Help posting from Jan 2004:
http://finzi.psych.upenn.edu/R/Rhelp02a/archive/33097.html
R equivalent of Splus peaks() function?
The peaks function there has worked well for me on a couple of projects, but
some code using "peaks" failed today, which had worked fine in the past.
I was looking for a peak in a test case that was a sine curve over one
2005 Jul 14
2
Partek has Dunn-Sidak Multiple Test Correction. Is this the same/similar to any of R's p.adjust.methods?
The Partek package (www.partek.com) allows only two selections for Multiple
Test Correction: Bonferroni and Dunn-Sidak. Can anyone suggest why Partek
implemented Dunn-Sidak and not the other methods that R has? Is there any
particular advantage to the Dunn-Sidak method?
R knows about these methods (in R 2.1.1):
> p.adjust.methods
[1] "holm" "hochberg" "hommel"
2007 Jul 18
1
Can any one help me on format file data.
Hi all.
I'd like know what is the format file saved by Leica
Microsystems TCS SP2-AOBS equipped with a SP2-FCS2 Leica Microsystems
workstation its datas. Cause it save in *.fcs extention file but
ins't flow cytometry standart format file...
Tahnks Horacio.
2006 Nov 28
1
There exist a FCS package on R-languaje?
Hi all, excuse me by this elementary question. I wish to know if a
package in language R exists to analyze FCS (Fluorescence Correlation
Spectroscopy) datas. And, if it possible, in addition can read the
archives in raw format generated by the ConfoCor2 program.
Thanks Horacio.
****************************************************************************
Dr. Horacio Castellini
2001 Feb 28
1
print()
Hi, I've two questions. Please help me. Thanks!
--- Question (1) ---
When I type: print("School Name")
the output is: [1] "School Name"
How to get rid of the '[1]' and the double quotes ""
and make the output like this: School Name
--- Question (2) ---
I got the following output by typing "summary(data)".
dstuser dstmethod
2007 Sep 27
1
R "capabilities" on a cluster node
R version 2.5.1 (2007-06-27)
I' running some simple R jobs via the Sun Grid Engine on our Linux cluster
in preparation for some bigger ones.
I checked R's capabilities on the cluster nodes (after failing to create a
png file) and am getting the following warning message:
[Run on a cluster node using qrsh:]
> capabilities()
jpeg png tcltk X11 http/ftp sockets
2005 Feb 23
1
Problem saving logic regression result equation to disk file
I want to get some "simple" logic regression examples to work before
exploring a hard problem.
I can get results, but I'm having some problems using "cat" to save the
logic regression equation to a disk file.
Consider this:
# Simple Logic Regression Example
# efg, 23 Feb 2005
library(LogicReg)
# Create simulated data with known logic equation:
# "noise"
2004 Sep 15
1
lomb periodogram package
Hi,
Does anyone know the name of the package that
includes a function for computing the lomb periodogram on irregular
spaced ts data? I saw the package once ~ 1 month ago but cannot
find it now ...
,
Rich
2005 May 31
1
apply the function "factor" to multiple columns
I have a case where I would like to change multiple columns containing
numbers to factors. I can change each column one at a time as in:
TEMP.FACT$EXPOS01<-factor(TEMP.FACT$EXPOS01,levels=c(1,2,3),labels=c("No
ne","Low Impact","MedHigh Imp"))
TEMP.FACT$EXPOS02<-factor(TEMP.FACT$EXPOS02,levels=c(1,2,3),labels=c("No
ne","Low
2007 Nov 13
1
Discrimination of almost-random time series
Dear time-series specialist:
I've got some time series representing measurements from a physical
process, like atomic decay data. These time series look almost
random, but should hopefully be distinguishable as they were taken
under different conditions.
I am looking for statistical approaches that are sensitive enough to
discriminate between such series of measurements. Preferably, there
2007 Aug 22
3
tackle memory insufficiency for large dataset using save() & load()??
Hello List, i have been agonizing over this for days, any reply would be greatly appreciated!
Situation:___________________________________
My original dataset is a .csv dataset (w/ 2M records) with 4 variables:
job_id (Primary key, won't be used for analysis, just used for join tables),
sector_id (categorical variable, for 19 industry sectors),
sqft (con't variable for square
2005 Aug 10
1
Why only a "" string for heading for row.names with write.csv with a matrix?
Consider:
> x <- matrix(1:6, 2,3)
> rownames(x) <- c("ID1", "ID2")
> colnames(x) <- c("Attr1", "Attr2", "Attr3")
> x
Attr1 Attr2 Attr3
ID1 1 3 5
ID2 2 4 6
> write.csv(x,file="x.csv")
"","Attr1","Attr2","Attr3"
"ID1",1,3,5
2008 Jul 17
3
Colours in R
Hi list,
I will help an person that will use some graphics of R in internet.
But this pearson want to specify the colours. This person want me to create
an pallete of colours like that:
Name of color - Code - Colour
White - 0xFFFFFF - color white (like an box with this color)
I know that is possible with R, but i don't know how.
Thanks for the advance.
Atenciosamente,
Leandro Lins