Displaying 20 results from an estimated 10000 matches similar to: "Num to INT"
2016 Apr 26
0
From NUM to INT
Inline.
-- Bert
On Tue, Apr 26, 2016 at 2:25 PM, Andr? Luis Neves <andrluis at ualberta.ca> wrote:
> Ok. I`m trying to run a Poisson glmm with an observation-level random
> intercept. But I`m getting the following error for the 'Baci' variable:
>
> 'Error: (maxstephalfit) PIRLS step-halvings failed to reduce deviance in
> pwrssUpdate'. I guess this message
2016 Apr 26
2
From NUM to INT
Ok. I`m trying to run a Poisson glmm with an observation-level random
intercept. But I`m getting the following error for the 'Baci' variable:
'Error: (maxstephalfit) PIRLS step-halvings failed to reduce deviance in
pwrssUpdate'. I guess this message is because the baci variable is not a
an integer, and cannot be transformed into an integer as R has a threshold
of
2x10^9 even in
2016 Apr 26
5
From NUM to INT
Dear all:
I converted the columns (Baci, Meti, Fungii, Protozoai) into integers
(using excel) and then imported the data (.txt) into R. Interestingly, the
other three variables were loaded as INT, but the 'Baci' one continued as
Num.
I imported the data using the following command line:
X <- read.delim(file.choose(),
header = TRUE,
dec =
2017 Jun 20
2
Help with the plot function
I'm trying to recreate a graph similar to the last one found on this link:
https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/7362679/6c_-_line_plots_with_error_bars.pdf
The difference is that I want budbreak on the top, and the temperatures at
the bottom.
I tried to set par before each graph and include lines, with no avail.
Thanks, Bert.
Andre
On Mon, Jun 19, 2017 at 7:41 PM, Bert Gunter
2016 Apr 26
0
From NUM to INT
Can you explain why you need them as 'integer', A floating point
representation can hold a value upto ~4.5e15 as an "integer" keeping the
precision that you might need.
Jim Holtman
Data Munger Guru
What is the problem that you are trying to solve?
Tell me what you want to do, not how you want to do it.
On Tue, Apr 26, 2016 at 1:11 PM, Andr? Luis Neves <andrluis at
2017 Jun 20
0
Help with the plot function
1. Did you study the functions (esp. ?layout) to which I referred you?
2. Show us your code! -- "to no avail" is meaningless!
-- Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Mon, Jun 19, 2017 at 7:01 PM, Andr? Luis Neves
2017 Jun 20
2
Help with the plot function
Hi, Bert:
Yes, I studied the functions you suggested, but I didn't get to adapt it to
my example whose reproducible code I sent in my first email.
Here it is the code of the functions I studies:
## par
par(mfrow = c(2, 3))
par(cex = 0.6)
par(mar = c(3, 3, 0, 0), oma = c(1, 1, 1, 1))
for (i in 1:6) {
plot(1, 1, type = "n")
mtext(letters[i], side = 3, line = -1, adj = 0.1, cex =
2017 Jun 20
2
Help with the plot function
Dear friends,
I have the following dataframe:
YEAR <- c(1996 , 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 )
T_MAR <- c(2.8, 6.5, 5.4,2.4, 4, 4.1, 3, 4.4, 4.5)
T_APR <- c(5.7, 7.8, 7.7, 4.6, 4.7, 6.2,5.7, 5.9, 7)
T_MAY <- c(7, 8.8, 10, 6, 5.5, 7.6, 8.5, 7.3, 10.2)
BUD <- c(87, 98, 93, 85, 89, 91, 87, 92, 92)
BUD_SE <- c(3.6, 2, 2.4, 4, 2.4, 2.4, 4, 2.4, 3)
g1 <-
2017 Jun 20
1
Help with the plot function
Dear all,
I found the last example of this link (
https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/7362679/6c_-_line_plots_with_error_bars.pdf)
very similar to the one I need to make for my paper, and I think I got what
I wanted by applying some of the suggestions of this mail list.
Here it is the code I devised (maybe there will be further improvements
from the list):
YEAR <- c(1996 ,
2017 Jun 20
0
Help with the plot function
See
?layout
?split.screen
?par (the mfrow and mfcol values)
depending exactly on what you want to do and how you want to do it.
Essentially, these all allow you to make separate plots at different
regions of the device.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in
2017 Jun 20
0
Help with the plot function
Hi
You are quite close. With slight modification of your code:
par(mfrow = c(2, 1))
par(cex = 0.6)
par(mar = c(0, 0, 0, 0), oma = c(4, 4, 0.5, 0.5))
par(tcl = -0.25)
par(mgp = c(2, 0.6, 0))
plot(BUD~YEAR, type="o", ann=F, axes=F, pch=19, ylim=c(60,100),data=g1)
axis(4, las=2)
mtext("Bud Break (Julian Day)", side=4, padj=4)
arrows(g1$YEAR,g1$BUD, g1$YEAR,g1$BUD + g1$BUD_SE,
2016 Apr 26
0
From NUM to INT
Please respond to the list. It will be obvious why in a second.
That's not my threshhold! -- it's R's. Your numeric integers cannot be
exactly represented as integers in R. Period. Maybe there are special
packages for extended arithmetic that can do this. but someone else
would have to help you there. See here for a discussion that might be
helpful:
2007 Mar 08
2
Problems with different mail clients
I use dovecot as my imap server, and everything is ok.
I used an IMAP client from Windows XP (Outlook Express) as well as Pocket PC (Windows Mobile 5) and webmail.
The problem is that I recently used Windows Vista and its imap client (Windows Mail), and problems began.
>From the Windows XP machine, all is ok, but from the Pocket PC a weird thing happens:
When I first configure the client,
2006 Oct 02
5
Problems with MySQL
Hello,
Sorry for posting this here, but i've posted in MySQL list and no one
answered.
I'm trying to set a password for a user with the command:
mysql> set password for gamito at localhost=password('blabla');
but i always get the error:
ERROR 1133 (42000): Can't find any matching row in the user table
although i'm pretty sure that the user exists.
I'm using
2009 Jan 25
2
asterisk help
hello! i'm new to asterisk.
i'm using CentOS 5.2 + ASterisk 1.6
when i finish installing asterisk, i configure sip.conf like:
[4455]
type=friend
username=4455
secret=1234
host=dynamic
context=internal
[4466]
type=friend
username=4466
secret=1234
host=dynamic
context=internal
and extensions.conf like:
[internal]
exten => 4455,1,Dial(SIP/4455)
2006 Feb 13
2
Alcatel 4200 series pbx
Hi,
Does anyone have any experience connecting asterisk to alcatel 4200
series pbx with bri cards?
Does it should work with asterisk bri in NT mode, and alcatel bri with
TE mode?
Cheers, Igor Neves.
2004 Feb 28
9
[Bug 52] ssh hangs on exit
http://bugzilla.mindrot.org/show_bug.cgi?id=52
------- Additional Comments From tsi at ualberta.ca 2004-02-29 07:10 -------
Created an attachment (id=557)
--> (http://bugzilla.mindrot.org/attachment.cgi?id=557&action=view)
suggested fix (against 3.8p1)
I've been running with this patch on various flavours of Linux, IRIX and SunOS
since last September.
------- You are
2018 May 21
3
[Bug 106592] New: 2nd GPU / screen not detected after driver / xorg update
https://bugs.freedesktop.org/show_bug.cgi?id=106592
Bug ID: 106592
Summary: 2nd GPU / screen not detected after driver / xorg
update
Product: xorg
Version: unspecified
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: blocker
Priority: medium
Component:
2006 Oct 03
1
XP/W2K on Samba 3
Hello,
maybe it is not the right place to ask Windows-related questions, but i'll give it a try.
I am running a Debian-Etch-Server with Samba 3 and Windows2000 and XP-clients.
Everything is working fine except:
For every user logging in from a Win-client, the client generates a local user-profile and local user-directories.
What has to be done within Samba and what has to be done on the
1998 Aug 08
20
Roaming profiles
I want to setup a linux box with samba as a file and print server for a
LAN of 20 NT 4.0 SP3 workstations. I want the home direcotories to be on
the server the clients to have roaming profiles.
For this, do I have to make the linux box a domain controller? I want to
avoid it if I can, because the domain control code in not on the
production releases. I don't want to setup an NT server either.