similar to: How export data set (available in the package) from R?

Displaying 20 results from an estimated 2000 matches similar to: "How export data set (available in the package) from R?"

2017 Jul 30
0
How export data set (available in the package) from R?
Read the help file for the survival package. Probably use the data function to retrieve it, and write it out using the write.table function. -- Sent from my phone. Please excuse my brevity. On July 29, 2017 8:47:51 PM PDT, Ted via R-help <r-help at r-project.org> wrote: >"Data set flchain available in the survival? package". ?How can?I >get?it (from R)? as Excel file?
2017 Nov 15
1
Creating a SQL R package
Hello everyone. My name is Jo?o Paulo I am a master's student in the course of omputer science. I intend to create a package for the R that makes the SQL language commands available for use. I know that there are already some packages that execute SQL commands within R. However, most of these commands require querys to be passed as a string. I wish SQL commands could be used more naturally.
2017 Dec 01
2
R vs PYTHON vs SAS vs SPSS?
I am a mature learner; 3 masters some doctoral work ? statistics for social sciences; psychological statistics ? worked in spss and sas 2005 ? 2006 now have forgotten ; relearning my question is this can I do everything in R and Python and SAS studio that I did in SPSS and the paid variation of SAS we used in doctoral statistics class? Can I do in Stat in R or Python or SAS studio everything I
2018 Feb 23
4
change location of temporary files
I would like to change where R stores the temporary files to my external hard drive in my iMac. This is important because the temporary files R creates are huge and I do not have enough available space in my internal HD. Again, this is for macOS. This change has to be temporary. Later I need to use the usual location for temp files in the internal HD. Thanks in advance, Kumar Mainali --
2017 Jun 01
3
Post for R
Hello,? I want to split the dataframe into 1000 groups based on two column values(max value and second max value). First, I made two lists L1 and L2. ?L1 is the list divided into 100 groups based on the range of max value and L2 is divided into 10 groups based on the second max values. Now I want to do the combinations based on L1 and L2. I want to do a for loop for L1 and for each element in L1,
2017 Jul 30
0
How export data set (available in the package) from R?
I also suggest you Hadley's optimized package for interoperating xls files with R: https://github.com/tidyverse/readxl https://cran.r-project.org/web/packages/readxl/index.html
2017 Aug 19
4
My very first loop!! I failed. May I have some start-up aid?
Dear all, I have a data similar to this: myframe<- data.frame (ID=c("Ernie", "Ernie","Ernie","Ernie"), Timestamp=c("24.09.2012 08:00", "24.09.2012 09:00", "24.09.2012 10:00", "25.09.2012 10:00"), Longitude=c("8.481","8.482","8.483","8.481"),
2017 Dec 01
0
R vs PYTHON vs SAS vs SPSS?
Yes On 30 November 2017 at 22:28, <hotprojects at nyc.rr.com> wrote: > I am a mature learner; 3 masters > some doctoral work ? statistics for social sciences; psychological > statistics ? > worked in spss and sas 2005 ? 2006 > now have forgotten ; relearning > my question is this can I do everything in R and Python and SAS studio > that I did in SPSS and the paid
2018 Apr 16
1
strange warning: data() error?
> On Apr 16, 2018, at 3:20 PM, David Winsemius <dwinsemius at comcast.net> wrote: > >> >> On Apr 16, 2018, at 2:58 PM, Therneau, Terry M., Ph.D. via R-devel <r-devel at r-project.org> wrote: >> >> A user asked me about this and I can't figure it out. >> >> tmt% R >> R Under development (unstable) (2018-04-09 r74565) --
2017 Aug 19
0
My very first loop!! I failed. May I have some start-up aid?
[answers inline] On 18 August 2017 at 20:08, Dagmar <Ramgad82 at gmx.net> wrote: > > myframe<- data.frame (ID=c("Ernie", "Ernie","Ernie","Ernie"), > Timestamp=c("24.09.2012 08:00", "24.09.2012 09:00", "24.09.2012 10:00", > "25.09.2012 10:00"),
2018 Jan 30
3
Best practices in developing package: From a single file
Dear R developers, I am wondering what are the best practices for developing an R package. I am aware of Hadley Wickham's best practice documentation/book (http://r-pkgs.had.co.nz/). I recall a couple of years ago there were some tools for generating a package out of a single file, such as using package.skeleton, but no auto-generated documentation. Do you know a way to generate
2018 Apr 16
3
strange warning: data() error?
A user asked me about this and I can't figure it out. tmt% R R Under development (unstable) (2018-04-09 r74565) -- "Unsuffered Consequences" Copyright (C) 2018 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) > library(survival) > data(cgd0) Warning message: In data(cgd0) : data set ?cgd0? not found ---- The data set is present and can be
2017 Nov 17
3
Dataframe is character
Hi everybody, Question: why are my dataframe and numeric variables a character? I read an excel file via readxl but my dataframe is a character, and numeric variables, eg "yi", are also a character. My excelfile is in English numeric Sometimes the dataframe was indeed a dataframe, but I do not know why it did sometimes. Thank you in advance, Roberto PS I used "guess". The
2017 Nov 30
2
binary form of is() contradicts its unary form
2017-11-30 3:14 GMT+01:00 Suzen, Mehmet <mehmet.suzen at gmail.com>: > My understanding is that there is no inconsistency. `is` does what it > claims, from the documentation: > > ?is?: With two arguments, tests whether ?object? can be treated as > from ?class2?. > > With one argument, returns all the super-classes of this > object's
2013 Jan 09
5
R encrypt/decrypt
Hello, I am working on a web system (php) that uses R in the backend, and we need some basic fast encryption/decryption for the underlying mysql database that can be used by both R AND php. It does not need to be top-of-the-line, but just provide some basic level of fast encryption/decryption. Any suggestions? Thank you, Ramiro [[alternative HTML version deleted]]
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) > That is to say, could it be that it's treating the first >
2017 Nov 17
0
Dataframe is character
class("dat") is different from class(dat), which is what you actually want. On 17-11-17, P. Roberto Bakker wrote: > Hi everybody, > > Question: why are my dataframe and numeric variables a character? > > I read an excel file via readxl but my dataframe is a character, and > numeric variables, eg "yi", are also a character. > My excelfile is in English
2018 Jan 30
2
Why R should never move to git
This might be off topic, but if R-core development ever moves to git, I think it would make sense to have its own git service hosted by a university, rather than using github or gitlab. It is possible via https://gogs.io/ project. Just for the record. Best, -m
2017 Nov 30
3
binary form of is() contradicts its unary form
2017-11-30 14:13 GMT+01:00 Suzen, Mehmet <mehmet.suzen at gmail.com>: > On 30 November 2017 at 14:04, I?aki ?car <i.ucar86 at gmail.com> wrote: >> >> Am I supposed to read every reference on a man page just to know what >> to expect from a function? >> > > If the reference is from John Chamber, you are supposed to read it. As a joke, it's funny.
2007 Feb 14
2
environement.rb compent récupérer une variable ?
Salut, Je souhaiterai définir dans mon fichier environement.rb une variable qui puisse être récupéré dans mes controlleurs. Plus précisément je souahiterai initialiser une varible avec l''ip du serveur qui héberge l''appli et pouvoir la récupérer dans mes controlleurs. Je suis sur que c''est trés simple mais je n''ai pas trouvé l''info. Merci ! --