Displaying 20 results from an estimated 2000 matches similar to: "Changing character limit in deparse, as.character and toString"
2006 May 17
1
Column notation
Hello,
I would like to run a correlation on values in a table that
has 4 rows and 136 columns. However, I am only interested in
correlating the values in alternating blocks of 15 columns.
For example, I would like to correlate the values in row 1,
columns 2-16:31-46:61-76:91-106 with values in row 2, columns
2-16:31-46:61-76:91-106.
Is there a way to notate this in the cor command so that the
2006 May 17
1
boxplot
I am running this code to produce some boxplots. I have every thing that
I need except that I would like the whisker line to be solid line, not
dashes. I have reviewed the lattice docs but have not seemed to come
across this point.
print( bwplot( group ~ lpcb_tot, data= data7, xlab="Log PCB",
+ ylab=
+ " G B
+ S M S M
2006 May 15
1
Trying to get values to display on horizontal barchart
Hello,
R 2.3.0
Windows XP
I have spent quite a bit of time trying to resolve my problem below, which included a R site search.
The "vertical bars" syntax below produces a vertical bar chart with the values displayed above each bar. I want to cast this graphic horizontally, but I have not been able to arrive at a suitable outcome. The best I have been able to do, using the second block
2006 May 03
2
Outreg-like command?
It would be nice to have something like stata's outreg that lets regression
output go into a form like
Specification (1) Specification (2)
Var 1 coef(1,1) coef(1,2)
se(1,1) se(1,2)
Var 2 coef(2,1) coef(2,2)
se(2,1) se(2,2)
I don't think this can be done in xtable?
Thomas Davidoff
Assistant Professor
Haas School of Business
UC Berkeley
Berkeley, CA 94618
Phone: (510)
2006 May 17
4
uniform and clumped point plots
I am trying to generate two dimensional random coordinates.
For randomly distributed data I have simply used
>xy<-cbind(runif(100),runif(100))
However I also want to generate coordinates that are more uniformly
distributed, and coordinates that are more contagiously distributed than
the above.
Can anyone make any suggestions
Thanks.
Dr Terry Beutel
Rangeland Scientist
Animal
2009 Jul 09
6
Active Directory Integration Problems
Hello everyone,
I have setup Samba 3.0.28a on an Ubuntu 8.04 server. The setup that I
am working with is an exact copy (as far as I can tell) if an identical
installation that I did on a test box. Kerberos is setup and working
properly. I can use kinit to issue tickets. The box has been
successfully joined to the Active Directory domain. I can enumerate AD
users and groups. I can log
2006 Jul 27
3
deparse(substitute(foo))
I see that plot.default uses deparse(substitute(x)) to extract the
character name of an argument and put it on the vertical axis.
Hence:
foo <- 1:10
plot( foo )
will put the label "foo" on the vertical axis.
However, for a function that takes a "..." list as an input, I can only
extract the first argument name:
x <- 1:10
y <- 10:20
foo <- function(...) {
2009 Jul 09
1
Problem building 3.4.0 from source
I am attempting to build 3.4.0 from source on my Ubuntu 8.04 box. I
have gcc installed. When I run ./configure it returns "C compiler
cannot create executables".
I have been looking through the config.log file and I think I found the
error message.
configure:3304: gcc conftest.c >&5
/usr/bin/ld: crt1.o: No such file: No such file or directory
collect2: ld returned
2010 Jan 26
4
Error with toString
Hello there, I want to create a string from strings and numbers, here is my
code:
str <- "name" & toString(20)
but it returns me this error:
Error in toString(20) : could not find function ".jcall"
what did I do wrong? I couldn't find this error anywhere...
--
View this message in context: http://n4.nabble.com/Error-with-toString-tp1290327p1290327.html
Sent from
2010 Jan 12
1
Problem with toString
Hi all,
I got a problem with * "toString()"* function
its behaving odd in some times most of the times its giving correct results
but in peculier cases its giving results like *"愭]"*
especially while i am working with c# +R-project
thats also after getting some error like
after trying to caliculate "*mean("NA")" *
can any one help me why its
2010 Mar 06
3
[LLVMdev] constness of APFloat::toString
Hi!
I wonder if llvm::APFloat::toString() can be const since
it should not modify the APFloat.
-Jochen
2010 Mar 06
0
[LLVMdev] constness of APFloat::toString
On Mar 6, 2010, at 3:39 AM, Jochen Wilhelmy wrote:
> Hi!
>
> I wonder if llvm::APFloat::toString() can be const since
> it should not modify the APFloat.
Done in r97883, thanks.
2002 Aug 29
2
problem with toString
Hi,
I am using R 1.5.1 under Windows 2000. I have a problem with the function toString: It seems not to work for longer
vectors as expressions.
This example works well:
q1<-expression(c(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15))
toString(q1)
I get:
"c(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15)" => OK
But this one does not:
2011 Aug 24
0
library REEMtree => Error in estRE[toString(uniqueID[i]), 1] : incorrect number of dimensions
Hi List,
I'm having this problem when trying to use the PREDICT function.
Here is a way to reproduce the error
library(REEMtree)
data(simpleREEMdata)
REEMresult<-REEMtree(Y~D+t+X, data=simpleREEMdata, random=~1|ID/D)
predict(REEMresult, simpleREEMdata, id = simpleREEMdata$ID/simpleREEMdata$D, EstimateRandomEffects=TRUE)
As far as I understand the problem is that I'm not being
2004 Dec 03
4
Polycom 500, won't ring??
Hi, I have was testing some of the different ring types with my polycom
500, and the ALERT_INFO settings. Now when my phone receives a call it
won't ring. All the other phones ring fine, and my phone wasn't the only
one I rebooted with the changed sip.conf and impd.conf. I have reverted
back to a standard sip.conf and impd.conf and I still can not get my
phone to ring for any incoming
2009 Mar 31
4
what is the preferred method to create a package local variable?
for the moment, I'm using:
.onAttach <- function(libname, pkgname) {
.bbg.db.conn <<- dbConnect(dbDriver("PostgreSQL"), user="blah","blah")
}
.onUnload <- function(libpath) {
dbDisconnect(.bbg.db.conn)
}
which results in a hidden global variable in the global environment.
I would prefer to make the assignment only in the package namespace.
2009 May 19
4
ext3 efficiency, larger vs smaller file system, lots of inodes...
(... to Nabble Ext3:Users - reposted by me after I joined the ext3-users mailing list - sorry for the dup...)
A bit of a rambling subject there but I am trying to figure out if it is more efficient at runtime to have few very large file systems (8 TB) vs a larger number of smaller file systems. The file systems will hold many small files.
My preference is to have a larger number of smaller file
2004 Dec 08
2
Dropping Calls, irregular interval no logs
Has anyone seen an issue with SIP phone (polycom 500) dropping calls at
irregular intervals with no errors in the asterisk log files? I am
having this issue as described and it is a complete pain in my rear to
trouble shoot because when I call my cell phone I can get a call to last
over 30 minutes yet when I call another office that uses a standard pbx
I can't get past 10 minutes. For some
2017 Jan 03
2
[R] Problems when trying to install and load package "rzmq"
On Tue, Jan 3, 2017 at 3:53 PM, Whit Armstrong <armstrong.whit at gmail.com> wrote:
>
> I maintian the rzmq project.
>
> love to get it running on windows, but zmq doesn't play nicely with R's
> mingw.
It's fairly easy to link against the libraries from rwinlib:
https://github.com/rwinlib/zeromq. I'll send you a pull request later
this week to fix the binary
2006 Nov 08
4
[LLVMdev] Fortran and LLVM
Hi all,
I'm looking into using LLVM to do some optimisations of
Fortran code. As part of this, I've been trying to build
the frontend with f95 support. At the moment, I'm trying
to resolve undefined symbol problems for code defined in
c-common.c + elsewhere - I'm taking the temporary approach
of copy-pasting it into a new file, and linking that in. I have no
idea if it will