Displaying 20 results from an estimated 400 matches similar to: "overshoot of formula line in summary output of Sweave"
2011 Jan 30
2
bit wise operation on long bit vector?
Hi
Is there any function to do bitwise or/and/xor on long bit vectors?
"aaaaa"
"0000000000000000000000000000000000000000000000000000000000000000......................"
"bbbbb"
"0000000000000000000000000000001000000000000100000000100000001100......................"
"ccccc"
2011 Dec 06
1
RStudio: copied line is always not the same as the line that I highlighted
Hi all,
I am using RStudio. I wanted to copy and past an expression/line.
I highlighted it, and then copied and pasted:
The result was not the line that I wanted, instead, it was the line above...
For example:
I have three lines:
aaaaa
bbbbb
ccccc
....
I highlighted "bbbbb" and copied, but the pasted outcome was "aaaaa"...
What happened?
Thanks al ot!
[[alternative
2009 May 04
1
Syncronization in rails
Hello,
Here is the logic that I am trying to achieve. I have a User Model and
the business rule is that user can accept maximum 5 friends requests.
for this I have an accept method in User Model which looks similar to
below code snippet
def accept(friend)
raise ArgumentError if self.friends.count >= MAX_FRIENDS_ALLOWED
...
...
#code to add friend to friends list
end
As you
2000 Aug 09
1
circles overshoot (PR#629)
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_001_01C00241.18831EF0
Content-Type: text/plain;
charset="iso-8859-1"
Anyone ever tried to
plot(c(1.0,0,2),c(1.0,0,2));
symbols(c(1.0),c(1.0),circles=(c(1.0)),inch=FALSE,add=TRUE); #?
Why does the circle overshoot ?
The problem is
1999 Jul 31
2
Accessing Samba shares via PPP links
Hello all.
I am sure that this is an FAQ but I cannot find a succinct answer anywhere.
My question is:
What is the correct way to access a Samba share when the Samba server has a
private IP adress (eg 192.168.x.y), the (Windows via PPP) client is assigned a
relevant private address (eg 192.168.x.z) and the username/password used to
login to the client is not known to the server and/or is
2004 Jan 09
1
degree-min-sec data
Hello -
Have both astronomic and geodetic data sets with values in the form
"ddd:mm:ss.sssss", where dd is an integer between -180 and 180, mm is an
integer between 0 and 60, and ss is a floating-point
number between 0 and 60.0. In order to do anything useful with these
values they need to be turned into their "decimal degree" equivalent.
Assuming the data is a vector y, the
2004 Jun 22
1
Using xtable with summaries of lm objects
Hi all
Suppose I do the following:
set.seed(1000)
library(xtable)
x <- runif( 10 )
y <- 1 + 2*x + rnorm( length(x) )
test.lm <- lm( y ~ x )
summary( test.lm )
xtable ( summary( test.lm ) )
The final xtable output follows:
% latex table generated in R 1.8.1 by xtable 1.2-2 package
% Tue Jun 22 09:56:36 2004
\begin{table}[ht]
\begin{center}
\begin{tabular}{rrrrr}
\hline
&
2012 Apr 27
1
Rconsole file fails to remember GUI settings, and script window text colour option is missing
Am encountering two related problems since the 2.15 release. Apologies in
advance for a mundane non code-related post, but you know how it is. I'm
using the basic R GUI.
1: I use a black environment for no glare, so pre-version 2.15 I've had
black backgrounds and white text. Since the 2.15 release my script window
text has colour turned itself black (so is now invisible) and now I
2000 Aug 09
0
circles overshoot
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_001_01C00241.18831EF0
Content-Type: text/plain;
charset="iso-8859-1"
Anyone ever tried to
plot(c(1.0,0,2),c(1.0,0,2));
symbols(c(1.0),c(1.0),circles=(c(1.0)),inch=FALSE,add=TRUE); #?
Why does the circle overshoot ?
The problem is
2012 Apr 09
2
Creating Better Table in R
Could anyone please direct me on how to make a nicer table in R? THANKS FOR
ALL THE HELP!
I would like to make a table with the following in it: estimate, t value,
significance, beta, standard errors, adjusted r squared, and residual
standard error (3 decimal points if possible, but I can do it by hand). Also
I'd love to include the source of my information on the bottom of the table
if
2008 Oct 11
6
Sweave-LaTEX question
Hi:
I am working on a publication and I have heard about LaTEX but I haven't actually tried to learn about it until today. I've found a few examples but I can't actually make them work properly. I have a couple of questions:
Does LATEX have to be installed on your computer? How does the xtable package and Sweave work together? How can I make the code below create a table as pdf file?
2012 Sep 29
1
Error during decryption of meta key
Hi,
I've got a relatively simple tinc setup.
I've got two "servers" that are on the public internet that act as
routers for three "clients" that are behind NATs.
Those servers are called aaaaa and bbbbb the clients are xxxxx, yyyyy and zzzzz
Unfortunatly the servers have problems accepting a connection from the clients
syslog on aaaaa:
Sep 29 18:28:58 schuerrer
2012 Apr 27
1
Rconsole file fails to remember GUI settings, and script
Sorry, I don't use Windows... can't help there.
It's customary to keep cc'ing the list on these sorts of things so
someone with a more similar platform/ more expertise can take the
issue up if needed. Maybe someone else will be able to help you out.
Michael
On Fri, Apr 27, 2012 at 9:05 AM, geo theory <geotheory1 at gmail.com> wrote:
> Hi there
>
> Window 7. Sorry
2011 May 07
3
how to not match partial names
Dear friends,
How do I stop partial matching of list names?
e.g.,
x <- list(AAAA="aaaaa", BBBBB="bbbbb")
is.null(x$A) #returns FALSE even though there is no element A.
if(is.null(x$A)) {result <- x$BBBB} else {result <- x$A}
result #is aaaa even though there is no x$A element
x <- list(CCCC="aaaaa", BBBBB="bbbbb")
if(is.null(x$A))
2005 Apr 08
2
DLL Memory Problem
Hello,
I have created a .dll file using G77 and MinGW on my PC (Windows
2000). After using dyn.load to bring it into R2.0.1, I then call the .dll
through the function ccprox shown below. It returns the correct
values. If I run it a second time though it returns different values, so
it seems something is being placed oddly in memory.
If I unload and reload the .dll it works again the first
2015 Feb 13
4
Centos 6 Sendmail backup MX Config
Hi All,
I'm just wanting to check that my understanding of the settings is
correct as my web searches are finding a lot of dated information.
If I want a Centos 6 sendmail system act as the secondary MX for domain
bbbbb.co.uk do I just add a
Connect:bbbbb.co.uk RELAY
statement into /etc/mail/access and restart sendmail
Obviously I have the DNS MX records for the domain are
2007 Sep 13
1
Problem using xtable on an array
Hi all
I know about producing a minimal example to show my problem. But I'm
having trouble producing a minimal example that displays this
behaviour, so please bear with me to begin with.
Observe: I create an array called model.mat. Some details on this:
> str(model.mat)
num [1:18, 1:4] -0.170 -0.304 -2.617 2.025 -1.610 ...
- attr(*, "dimnames")=List of 2
..$ : chr
2020 Sep 01
2
using %d as a variable in the ldap search base
I'm trying to use auth bind to avoid having a plain text password in a
config file. With %u instead of %n, the @domain part of the login
ends up in the uid field of the search filter. As I said, my OUs have
overlapping users, so I have configured things such that the users are
logging in with user at domain, and need to get the domain component
into the search base as you cannot filter on
2020 Aug 31
2
using %d as a variable in the ldap search base
Hi,
I'm trying to configure dovecot to use LDAP authentication directly,
and I'm having a bit of trouble. I have a somewhat unusual setup, in
that I have an LDAP directory that has 3 OUs each of which have their
own set of users, some of which overlap. As I was trying to figure
things out, I was setting the search base in my
/etc/dovecot/dovecot-ldap.conf.ext file which is referenced
2015 Oct 24
4
ADUC - "UNIX Attributes" tab - "Unwilling To Perform"
Thanks Rowland - appreciated.
I have checked the ldbsearch result and both groups look to be pretty
much exactly the same to me, one of them is shown below (I have
sanitised some of the output, replacing parts with 123/a/b/c, but the
rest of the output is byte for byte as seen)
In the time between posting my original message and checking again
just now, however, I have the following additional