Displaying 20 results from an estimated 25 matches for "cortens".
Did you mean:
contens
2016 Nov 30
1
problem with normalizePath()
...# fails, throws same error
> df2 <- readxl::read_excel("Z:/Stat tools/addrlist-4-MikeL.xls", 2) #
> works
>
> -----Original Message-----
> From: Martin Maechler [mailto:maechler at stat.math.ethz.ch]
> Sent: Friday, November 18, 2016 3:37 PM
> To: Evan Cortens
> Cc: Laviolette, Michael; r-devel at r-project.org
> Subject: Re: [Rd] problem with normalizePath()
>
> >>>>> Evan Cortens <ecortens at mtroyal.ca>
> >>>>> on Thu, 17 Nov 2016 15:51:03 -0700 writes:
>
> > I wonder if this could be...
2016 Nov 18
2
problem with normalizePath()
>>>>> Evan Cortens <ecortens at mtroyal.ca>
>>>>> on Thu, 17 Nov 2016 15:51:03 -0700 writes:
> I wonder if this could be related to the issue that I
> submitted to bugzilla about two months ago? (
> https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=17159)
> Th...
2017 May 23
2
Inconsistency in handling of numeric input with %d by sprintf
...o the safest thing is indeed passing the right type, but the behaviour
>> is indeed confusing. I checked this on both Windows and Debian, and on both
>> systems I get the exact same response.
>>
>> Cheers
>> Joris
>>
>> On Tue, May 23, 2017 at 4:53 PM, Evan Cortens <ecortens at mtroyal.ca>
>> wrote:
>>
>>> Hi Michael,
>>>
>>> I posted something on this topic to R-devel several weeks ago, but never
>>> got a response. My ultimate conclusion is that sprintf() isn't super
>>> consistent in how it...
2017 May 23
2
Inconsistency in handling of numeric input with %d by sprintf
...t;, as.numeric(c(1,NA)))
[1] "1" "NA"
So the safest thing is indeed passing the right type, but the behaviour is
indeed confusing. I checked this on both Windows and Debian, and on both
systems I get the exact same response.
Cheers
Joris
On Tue, May 23, 2017 at 4:53 PM, Evan Cortens <ecortens at mtroyal.ca> wrote:
> Hi Michael,
>
> I posted something on this topic to R-devel several weeks ago, but never
> got a response. My ultimate conclusion is that sprintf() isn't super
> consistent in how it handles coercion: sometimes it'll coerce real to
>...
2009 Sep 11
4
heroku gem and two different heroku accounts
Heroku support works so slowly I want to ask community.
1)I have a problem with switching between my two heroku accounts on the
same laptop. All of the commands execute from one of these, but I want
to execute it from another. Howto switch user to another heroku account?
2) how to treat my ubuntu to default for the heroku.com?
--
Posted via http://www.ruby-forum.com/.
2016 Nov 30
0
problem with normalizePath()
...quot;, 2) # fails, throws same error
df2 <- readxl::read_excel("Z:/Stat tools/addrlist-4-MikeL.xls", 2) # works
-----Original Message-----
From: Martin Maechler [mailto:maechler at stat.math.ethz.ch]
Sent: Friday, November 18, 2016 3:37 PM
To: Evan Cortens
Cc: Laviolette, Michael; r-devel at r-project.org
Subject: Re: [Rd] problem with normalizePath()
>>>>> Evan Cortens <ecortens at mtroyal.ca>
>>>>> on Thu, 17 Nov 2016 15:51:03 -0700 writes:
> I wonder if this could be related to the issue that I...
2017 May 19
2
Inconsistency in handling of numeric input with %d by sprintf
Consider
#as.numeric for emphasis
sprintf('%d', as.numeric(1))
# [1] "1"
vs.
sprintf('%d', NA_real_)
> Error in sprintf("%d", NA_real_) :
invalid format '%d'; use format %f, %e, %g or %a for numeric object
>
I understand the error is correct, but if it works for other numeric input,
why doesn't R just coerce NA_real_ to NA_integer_?
2016 Sep 26
2
Recursive dir.create() on Windows shares
Hi folks,
I've noticed that there's an issue with the recursive creation of
directories that reside on network shares. For example:
>
dir.create('\\\\SERVERNAME\\Empl\\Home1\\active\\e\\ecortens\\thisisatest',
recursive = TRUE)
Warning message:
In
dir.create("\\\\SERVERNAME\\Empl\\Home1\\active\\e\\ecortens\\thisisatest",
:
cannot create dir '\\SERVERNAME\Empl', reason 'Permission denied'
The issue is that dir.create() is skipping the server name, but it...
2008 Mar 11
2
trouble with MyPublisher.deliver_story
hi,
I can''t seem to be able to delivery stories!
I have this in my controller
MyPublisher.deliver_story(@current_facebook_user.friends.first,
@current_facebook_user, @object.id)
This is in models/my_publisher.rb
# story is published to the story of the to user
def story(to, f, object_id)
send_as :story
recipients to
title "An object?"
body
2017 May 23
0
Inconsistency in handling of numeric input with %d by sprintf
..."NA"
>
> So the safest thing is indeed passing the right type, but the behaviour is
> indeed confusing. I checked this on both Windows and Debian, and on both
> systems I get the exact same response.
>
> Cheers
> Joris
>
> On Tue, May 23, 2017 at 4:53 PM, Evan Cortens <ecortens at mtroyal.ca> wrote:
>
>> Hi Michael,
>>
>> I posted something on this topic to R-devel several weeks ago, but never
>> got a response. My ultimate conclusion is that sprintf() isn't super
>> consistent in how it handles coercion: sometimes it...
2016 Nov 17
2
problem with normalizePath()
The packages "readxl" and "haven" (and possibly others) no longer access files on shared network drives. The problem appears to be in the normalizePath() function. The file can be read from a local drive or by functions that don't call normalizePath(). The error thrown is
Error: path[1]="\\Hzndhhsvf2/data/OCPH/EPI/BHSDM/Group/17.xls": The system cannot find the
2017 May 23
0
Inconsistency in handling of numeric input with %d by sprintf
...passing the right type, but the behaviour
>>> is indeed confusing. I checked this on both Windows and Debian, and on both
>>> systems I get the exact same response.
>>>
>>> Cheers
>>> Joris
>>>
>>> On Tue, May 23, 2017 at 4:53 PM, Evan Cortens <ecortens at mtroyal.ca>
>>> wrote:
>>>
>>>> Hi Michael,
>>>>
>>>> I posted something on this topic to R-devel several weeks ago, but never
>>>> got a response. My ultimate conclusion is that sprintf() isn't super
>>&...
2018 Jan 08
2
Bug 17159 - recursive dir.create() fails on windows shares due to permissions
...my memory, it?s possible that \\share was a supported format in very old versions of Windows, but it?s been a long time since the UNC format came in. It?s also possible that \\share is a valid format in some odd environments, but the UNC format is far more widely used.
The patch suggested by Evan Cortens is simply to change the skip logic to skip over \\server\share instead of \\share. This will certainly fix the common use case of using UNC paths, but doesn?t attempt to deal with all the more complex options in Microsoft?s documentation. I doubt many users would ask for the complex cases, but the...
2018 Jan 17
2
[R-win] Bug 17159 - recursive dir.create() fails on windows shares due to permissions (MMaechler: Resending to R-windows@R-pr..)
...supported format in very old versions of
>> Windows, but it?s been a long time since the UNC format came in. It?s also
>> possible that \\share is a valid format in some odd environments, but the
>> UNC format is far more widely used.
>>
>> The patch suggested by Evan Cortens is simply to change the skip logic to
>> skip over \\server\share instead of \\share. This will certainly fix the
>> common use case of using UNC paths, but doesn?t attempt to deal with all
>> the more complex options in Microsoft?s documentation. I doubt many users
>> would...
2016 Sep 26
0
Recursive dir.create() on Windows shares
On 26/09/2016 5:27 PM, Evan Cortens wrote:
> Hi folks,
>
> I've noticed that there's an issue with the recursive creation of
> directories that reside on network shares. For example:
>
>>
> dir.create('\\\\SERVERNAME\\Empl\\Home1\\active\\e\\ecortens\\thisisatest',
> recursive = TRUE)
> W...
2016 Nov 17
0
problem with normalizePath()
...related to the issue that I submitted to bugzilla
about two months ago? (
https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=17159)
That is to say, could it be that it's treating the first path after the
single backslash as an actual directory, rather than as the name of the
share?
--
Evan Cortens, PhD
Institutional Analyst - Office of Institutional Analysis
Mount Royal University
403-440-6529
On Thu, Nov 17, 2016 at 2:28 PM, Laviolette, Michael <
Michael.Laviolette at dhhs.nh.gov> wrote:
> The packages "readxl" and "haven" (and possibly others) no longer acces...
2017 Mar 09
0
Possible issue with coercion in sprintf()?
...objects". Yet another possibility
is to have some special treatment for NA's, where it would check the first
non-NA element in the vector rather than the first element.
Or perhaps I'm totally off base here and this has been thoroughly discussed
in the past.
All best,
Evan
--
Evan Cortens, PhD
Institutional Analyst - Office of Institutional Analysis
Mount Royal University
403-440-6529
[[alternative HTML version deleted]]
2017 May 23
0
Inconsistency in handling of numeric input with %d by sprintf
...doesn't R just coerce NA_real_ to NA_integer_?
>
> Michael Chirico
>
> [[alternative HTML version deleted]]
>
> ______________________________________________
> R-devel at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel
>
--
Evan Cortens, PhD
Institutional Analyst - Office of Institutional Analysis
Mount Royal University
403-440-6529
[[alternative HTML version deleted]]
2008 Apr 03
1
including the original message in replies
Hi,
I don''t know how most of you get these messages, but I get the digest
version. It seems that most
people, when replying to a message, include all the previous messages
in their reply. This means that when I read the digest version, I need
to scroll through several pages of old emails to find the new ones. It
doesn''t make sense (to
me)
to be resend these old messages over and
2018 Jan 17
2
[R-win] Bug 17159 - recursive dir.create() fails on windows shares due to permissions (MMaechler: Resending to R-windows@R-pr..)
...very old versions of
>>> Windows, but it?s been a long time since the UNC format came in. It?s also
>>> possible that \\share is a valid format in some odd environments, but the
>>> UNC format is far more widely used.
>>>
>>> The patch suggested by Evan Cortens is simply to change the skip logic to
>>> skip over \\server\share instead of \\share. This will certainly fix the
>>> common use case of using UNC paths, but doesn?t attempt to deal with all
>>> the more complex options in Microsoft?s documentation. I doubt many users
&g...