Displaying 20 results from an estimated 32 matches for "stormi".
Did you mean:
storm
2010 Nov 11
1
Question about a hard drive error
Hey everyone,
I just got one of these today:
Nov 10 16:07:54 stormy kernel: sd 0:0:0:0: SCSI error: return code =
0x08000000
Nov 10 16:07:54 stormy kernel: sda: Current: sense key: Medium Error
Nov 10 16:07:54 stormy kernel: Add. Sense: Unrecovered read error
Nov 10 16:07:54 stormy kernel:
Nov 10 16:07:54 stormy kernel: Info fld=0x0
Nov 10 16:07:54 stormy kernel: end_request: I/O error, dev
2020 Feb 29
4
dput()
My interpretation of dput.Rd is that dput() gives an exact ASCII form
of the internal representation of an R object. But:
rhankin at cuttlefish:~ $ R --version
R version 3.6.2 (2019-12-12) -- "Dark and Stormy Night"
Copyright (C) 2019 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
[snip]
rhankin at cuttlefish:~ $ R --vanilla --quiet
> x <-
2020 Feb 08
4
Development version of R fails tests and is not installed
G'day all,
I have daily scripts running to install the patched version of the
current R version and the development version of R on my linux box
(Ubuntu 18.04.4 LTS).
The last development version that was successfully compiled and
installed was "R Under development (unstable) (2020-01-25 r77715)" on
27 January. Since then the script always fails as a regression test
seems to fail.
2020 Feb 29
3
dput()
I think Robin knows about FAQ 7.31/floating point (author of
'Brobdingnag', among other numerical packages). I agree that this is
surprising (to me).
To reframe this question: is there way to get an *exact* ASCII
representation of a numeric value (i.e., guaranteeing the restored value
is identical() to the original) ?
.deparseOpts has
?"digits17"?: Real and finite complex
2011 Jun 01
1
git push heroku master - has error
I am trying to put my app on heroku, following the instructions, when
I get here I get this error:
$ git push heroku master
Enter passphrase for key ''/c/Users/Laurence/.ssh/id_rsa'':
Counting objects: 277, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (246/246), done.
Read from remote host heroku.com: The connection was aborted
fatal: sha1 file
2020 Feb 08
0
Development version of R fails tests and is not installed
The only observation I can make is that the change to round() was made
in r77727 whereas your R-devel appears to be r77715 (so would not
exhibit the fixed behaviour). My guess is that there was a perpetual
installation failure after r77715 but that the test folder was still
retrieved and used.
On Sat, 8 Feb 2020 at 19:27, Berwin A Turlach <berwin.turlach at gmail.com> wrote:
>
>
2020 Feb 08
1
round(x, dig) [was "Development version of R fails tests .."]
>>>>> Hugh Parsonage
>>>>> on Sat, 8 Feb 2020 21:12:43 +1100 writes:
> The only observation I can make is that the change to
> round() was made in r77727 whereas your R-devel appears to
> be r77715 (so would not exhibit the fixed behaviour). My
> guess is that there was a perpetual installation failure
> after r77715 but that
2020 Feb 16
0
round(x, dig) [was "Development version of R fails tests .."]
I?disagree?with?what?is?assessed?as?"correct"?in?vignette?of?package?'round'.
With
x?<-?9.18665
,?what?is?actually?stored?in?'x'?is?a?number?that?is?slightly?larger?than?9.18665.?So,?as?said?in?the?vignette,?it?is?closer?to?9.1867?than?9.1866.
sprintf("%.4f",?x)
giving
"9.1867"
is?correct,?as?it?is?a?string?representing?the?_exact_?number?9.1867.
2019 Dec 12
4
R 3.6.2 is released
The build system rolled up R-3.6.2.tar.gz (codename "Dark and Stormy Night") this morning.
The list below details the changes in this release.
You can get the source code from
http://cran.r-project.org/src/base/R-3/R-3.6.2.tar.gz
or wait for it to be mirrored at a CRAN site nearer to you.
Binaries for various platforms will appear in due course.
For the R Core Team,
Peter
2019 Dec 12
4
R 3.6.2 is released
The build system rolled up R-3.6.2.tar.gz (codename "Dark and Stormy Night") this morning.
The list below details the changes in this release.
You can get the source code from
http://cran.r-project.org/src/base/R-3/R-3.6.2.tar.gz
or wait for it to be mirrored at a CRAN site nearer to you.
Binaries for various platforms will appear in due course.
For the R Core Team,
Peter
2019 Dec 12
4
R 3.6.2 is released
The build system rolled up R-3.6.2.tar.gz (codename "Dark and Stormy Night") this morning.
The list below details the changes in this release.
You can get the source code from
http://cran.r-project.org/src/base/R-3/R-3.6.2.tar.gz
or wait for it to be mirrored at a CRAN site nearer to you.
Binaries for various platforms will appear in due course.
For the R Core Team,
Peter
2015 Feb 02
4
[Bug 2348] New: allow ssh to connect to a unix domain socket
https://bugzilla.mindrot.org/show_bug.cgi?id=2348
Bug ID: 2348
Summary: allow ssh to connect to a unix domain socket
Product: Portable OpenSSH
Version: -current
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: ssh
Assignee: unassigned-bugs at
2020 Feb 29
2
dput()
Thanks guys, I guess I should have referred to FAQ 7.31 (which I am
indeed very familiar with) to avoid misunderstanding. I have always
used dput() to clarify 7.31-type issues.
The description in ?dput implies [to me at any rate] that there will
be no floating-point roundoff in its output. I hadn't realised that
'deparsing' as discussed in dput.Rd includes precision roundoff
issues.
2020 Mar 02
2
dput()
On 02/03/2020 3:24 a.m., Martin Maechler wrote:
>>>>>> robin hankin
>>>>>> on Sun, 1 Mar 2020 09:26:24 +1300 writes:
>
> > Thanks guys, I guess I should have referred to FAQ 7.31
> > (which I am indeed very familiar with) to avoid
> > misunderstanding. I have always used dput() to clarify
> > 7.31-type
2020 Feb 29
0
dput()
On 29/02/2020 4:19 a.m., Ben Bolker wrote:
>
> I think Robin knows about FAQ 7.31/floating point (author of
> 'Brobdingnag', among other numerical packages). I agree that this is
> surprising (to me).
>
> To reframe this question: is there way to get an *exact* ASCII
> representation of a numeric value (i.e., guaranteeing the restored value
> is identical()
2011 Oct 12
0
ARMA and prediction
Hello,
I am running an ARMA model to run forecast for changes in S&P 500 prices.
My ARMA calculations look as follows
armacal <- arma( spdata, order = c(0,4), lag = list(ma = c(1,2,4)) )
Output:
Call:
arma(x = spdata, order = c(0, 4), lag = list(ma = c(1, 2, 4)) )
Coefficient(s):
ma1 ma2 ma4 intercept
-0.073868 0.058020 -0.081292 0.007082
All's
1999 Jul 15
0
SAMBA IRIX Problem
Dear Experts,
I have a problem with SAMBA version 2.0.3 and older. After a few hours
of normal operation the workstation disappears from the browserlist but
the printing function works normal an I can make a manual connection
with the windows-explorer. After a reboot for one or two hours again
I can see the workstation normal in the windows explorer.
My workstation gives the errormessage:
2012 Jan 12
0
SOLVED: Centos6 Installer can handle 3TB Disks with little prepare.
Hi List,
yesterday i tried to install CentOS6 on Server bei Hetzner.de
I noticed that Anaconda Installer is not possible to handle the 3TB
Disks in Server
when u try to Partition them.
U can do only 3 normal partitions
or
u can do only 3 raid partitions,
the SOLUTION is:
Before U install Centos6 on the new naked server:
a) Start Server in Rescue mode
b) parted /dev/sda
c) mklabel gpt (
2012 Oct 23
1
Unable to start guest
I have been picking away at this problem and I have not been able to
resolve it yet and it appears quite puzzling to me, I am attempting to
start a guest on KVM and receive 'error: An error occurred, but the
cause is unknown'. I have a feeling this may be something simple I am
overlooking.
I have included log files and the xml of the guest at
2013 Feb 20
2
R and microsoft
Hi,
I hava some questions about R and other "softas".
Which applications (softas) I can use with R? Can I connect R with
Microsoft? Can I connect R with SPSS and how I can do it?
I am grateful, if you can help me.
-Teija
teijastormi@gmail.com
[[alternative HTML version deleted]]