similar to: Patch for bug 17256 'possible bug in writeForeignSAS in the foreign library when string is NA'

Displaying 20 results from an estimated 2000 matches similar to: "Patch for bug 17256 'possible bug in writeForeignSAS in the foreign library when string is NA'"

2018 May 17
0
Patch for bug 17256 'possible bug in writeForeignSAS in the foreign library when string is NA'
>>>>> NELSON, Michael <mnels at doh.health.nsw.gov.au> >>>>> on Thu, 17 May 2018 11:53:27 +0000 writes: > Attached is a patch to fix > https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=17256 > 'possible bug in writeForeignSAS in the foreign library > when string is NA' > The patch 1. fixing the case where
2017 Nov 01
0
beta binomial distribution installation
Hi there, It looks like you also need the bioconductor package biobase, I found instructions for downloading that package here: www.bioconductor.org/install Good luck. Cheers, Rhydwyn -----Original Message----- From: R-help [mailto:r-help-bounces at r-project.org] On Behalf Of Amany Abdel-Karim Sent: Wednesday, 1 November 2017 2:13 PM To: R-help at stat.math.ethz.ch Subject: [R] beta
2019 Jun 04
1
foreign:::writeForeignSAS patch not released?
Hello, In May 2018 there was some R-devel discussion about a bug in foreign:::writeForeignSAS. See here: https://stat.ethz.ch/pipermail/r-devel/2018-May/076220.html and it resulted in a patch. See: https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17256 And I see the changes in Subversion here: https://svn.r-project.org/R-packages/trunk/foreign/R/writeForeignSAS.R But I don't
2017 Nov 01
3
beta binomial distribution installation
Hi, I did a quick search for other packages that provide the beta binomial distribution and found "rmutil". > install.packages("rmutil") The package has the CDF (pbetabinom) and inverse CDF (qbetabinom) among other functions. HTH, Eric On Wed, Nov 1, 2017 at 7:50 AM, MCGUIRE, Rhydwyn < rmcgu at doh.health.nsw.gov.au> wrote: > Hi there, > > It looks like
2018 Jun 04
2
encoding argument of source() in 3.5.0
On R 3.5.0 (Mac) The issue appears when using the default (libcurl) method and specifying the encoding Note that using method='internal' causes a segfault if used in conjunction with encoding. (and works when encoding is not set) urlR <- "http://home.versanet.de/~s-berman/source2.R" # works url_default <- url(urlR) scan(url_default, "") # Read 7 items # [1]
2017 Nov 01
0
beta binomial distribution installation
Hello, Thank you for your response. I need to install RankTail package since it contains the beta binomial distribution, CDF and inverse CDF in the usual form which I need to use. However rmutil package contain unusual forms for these functions. So it is easier for me to deal with the forms are contained in RankTail. I tried to install bioconductor package, using the following commands but I
2017 Nov 01
2
beta binomial distribution installation
Hello, I tried to install package ?TailRank? using the command install.packages (RankTail) and library (TailRank) but I got the following errors. So, how can I install TaiRank in Rstudio to have se beta-binomial distribution, CDF and inverse CDG of beta-binomal? The commands I used are: > install.packages("TailRank") Installing package into
2018 Jun 04
3
encoding argument of source() in 3.5.0
>>>>> peter dalgaard >>>>> on Sun, 3 Jun 2018 23:51:24 +0200 writes: > Looks like this actually comes from readLines(), nothing > to do with source() as such: In current R-devel (still): >> f <- file("http://home.versanet.de/~s-berman/source2.R", encoding="UTF-8") >> readLines(f) > character(0)
2018 Jun 05
0
encoding argument of source() in 3.5.0
Thanks for the report, fixed in R-devel (74848). Best Tomas On 06/04/2018 02:41 PM, NELSON, Michael wrote: > > On R 3.5.0 (Mac) > > The issue appears when using the default (libcurl) method and specifying the encoding > > Note that using method='internal' causes a segfault if used in conjunction with encoding. (and works when encoding is not set) > > urlR <-
2006 Jul 13
1
writeForeignSAS and potential extensions
Dear R-devel, I've made some potential extensions to writeForeignSAS in 'foreign' that I wanted to pass along if anyone is interested. I've attached the diff -u output against the version found in foreign_0.8-15 and an .R file with my changes. (In this .R file, the function is named writeForeignSAS7 to simplify testing/comparisons.) I've tried to alter the current
2009 Jan 03
1
Bug report in foreign library (PR#13425)
here appears to be a bug in the foreign library. The following code used to work, but now generates an error when 'package="SAS"' is specified: ds <- read.csv("http://www.math.smith.edu/sasr/datasets/help.csv") # running foreign package version 0.8-30 library(foreign) # this works fine write.foreign(ds, "foo", "bar", package="Stata") #
2009 Feb 02
3
Problem with foreign package
I tried to use write.foreign() to export to SAS this morning and got an error. When I looked at the code for writeForeignSAS() I saw this line: dfn < -df which I think should be dfn <- df So, I tried to run update.packages() to see if there was an updated version and got the following result. > update.packages(c("foreign")) Warning message: In list.files(lib) :
2006 Dec 20
1
FW: R Version Problem in using write.foreign+SAS
Hi R experts, I have a problem in Write.foreign command (SAS). I have a data frame called d. >d Datetime 2006-12-01 00:00:00 2006-12-01 00:10:00 2006-12-01 00:20:00 2006-12-01 00:30:00 2006-12-01 00:40:00 >class(d$Datetime) [1] "POSIXt" "POSIXct" Then I tried with, write.foreign(d,"Z:\\try_i.sas7bdat"," Z:\\try_i.sas
2012 Feb 07
1
alternating element in url
Hey everybody, it would be really appreciate if you knew the solution to the following problem. I am trying to load data from the internet into R without having to save them. However, I need to acess a different website for each dataset. So I want to alternate an element in the URL. Eventually, I want to fill a 3 dimensional matrix/array where each slice is a two-dimensional matrix from the
2006 Dec 20
1
R Version Problem in using write.foreign+SAS
Hi experts, I have a problem in Write.foreign command (SAS). I have a data frame called d. >d Datetime 2006-12-01 00:00:00 2006-12-01 00:10:00 2006-12-01 00:20:00 2006-12-01 00:30:00 2006-12-01 00:40:00 >class(d$Datetime) [1] "POSIXt" "POSIXct" Then I tried with, write.foreign(d,"Z:\\try_i.sas7bdat"," Z:\\try_i.sas
2004 Aug 06
2
BUSINESS PROPOSAL
Dear Sir, Compliments, It is my great pleasure to write you this letter on behalf of myself and my colleagues. Your particulars was given to me by a member of the Nigeria Export Promotion Council (NEPC) who with the Federal Delegates to your country during an exhibition. I have decided to seek a confidential cooperation with you in the execution of the deal described hereunder for the benefit
2011 May 03
2
Overlapping x axes using Lattice
Hi R users I apologise in advance for this question as I suspect it is simple and perhaps others have had this problem. I am struggling to sort out how to fix the x axes so that the labels don't overlap. I have put the following example together to show my problem. library(lattice) titre <- as.factor(rep(c(10999,20999,30999,40999,50999,60999,
2011 May 16
4
Xen enviroment consultation
Hi all, I were upgrading my system recently. But I met some difficult problems, the biggest one is described in http://permalink.gmane.org/gmane.comp.emulators.xen.user/66971, unfortunately I got no answer yet. My original environment is xen3.4.2(64bit) + dom0 kernel 2.6.18-xen, and 4 domus with kernel 2.6.18-xen, after first upgrade stage, I have Xen4.1.0(64bit)+dom0 kernel 2.6.32.39, and 4 domu
2011 May 16
4
Xen enviroment consultation
Hi all, I were upgrading my system recently. But I met some difficult problems, the biggest one is described in http://permalink.gmane.org/gmane.comp.emulators.xen.user/66971, unfortunately I got no answer yet. My original environment is xen3.4.2(64bit) + dom0 kernel 2.6.18-xen, and 4 domus with kernel 2.6.18-xen, after first upgrade stage, I have Xen4.1.0(64bit)+dom0 kernel 2.6.32.39, and 4 domu
2006 Apr 10
2
CENTOS . and WEBSENSE ENTERPRISE Compatibility
Dear CentOSMailing List. We have a problem with Linux CentOS and Websense Enterpise Vers. 611., I would Like about to it, anyone was experience Installing CentOs and Websense Enterprise with Integration Squid Proxy ?. The following is my Installation Summary: LINUX KERNEL: Linux proxy 2.6.9-34.ELsmp #1 SMP Wed Mar 8 00:27:03 CST 2006 i686 i686 i386 GNU/Linux Linux version