similar to: as.integer question

Displaying 20 results from an estimated 4000 matches similar to: "as.integer question"

2017 Mar 18
2
dovecot problem with ssl
Am 18. M?rz 2017 18:55:58 MEZ schrieb Nilton Jose Rizzo <rizzo at i805.com.br>: >Em Sat, 18 Mar 2017 11:36:34 +0100, Christian Kivalo escreveu >> On 2017-03-18 07:19, Nilton Jose Rizzo wrote: >> > Em Fri, 17 Mar 2017 22:35:40 -0300, Nilton Jose Rizzo escreveu >> >> Em Thu, 16 Mar 2017 23:06:08 -0700, Doug Barton escreveu >> >> > On 03/17/2017
2017 Mar 18
2
dovecot problem with ssl
On 2017-03-18 07:19, Nilton Jose Rizzo wrote: > Em Fri, 17 Mar 2017 22:35:40 -0300, Nilton Jose Rizzo escreveu >> Em Thu, 16 Mar 2017 23:06:08 -0700, Doug Barton escreveu >> > On 03/17/2017 01:21 AM, Nilton Jose Rizzo wrote: >> > > >> > > >> > > Hi all, >> > > >> > > >> > > I already searched for this
2017 Mar 18
2
dovecot problem with ssl
Em Thu, 16 Mar 2017 23:06:08 -0700, Doug Barton escreveu > On 03/17/2017 01:21 AM, Nilton Jose Rizzo wrote: > > > > > > Hi all, > > > > > > I already searched for this error on google and nothing > > > > I never install dovecot, this is a first time. > > > > This error, I know, is too newbie and stupid, but I > >
2017 Mar 17
4
dovecot problem with ssl
Hi all, I already searched for this error on google and nothing I never install dovecot, this is a first time. This error, I know, is too newbie and stupid, but I checked more than twice. root at server:/usr/local/etc/dovecot # sievec /home3/virtual/default.sieve doveconf: Fatal: Error in configuration file /usr/local/etc/dovecot/conf.d/10-ssl.conf line 7: Unknown setting: ssl
2017 Mar 19
1
dovecot problem with ssl
I'm solve my problem, but not have a idea how or why this solve. I recompliled the dovecot without support to Postgres ans SQLite3 and LDAP. I was configure Mysql support only and all work fine. Some one have any idea Why it's work? TIA --- /************************************************* **Nilton Jos? Rizzo UFRRJ **http://www.rizzo.eng.br http://www.ufrrj.br
2011 Jun 21
5
omitting columns from a data frame
Dear R People: I have a data frame, xm1, which has 12 rows and 4 columns. If I put is xm1[,-4], I get all rows, and columns 1 - 3, which is as it should be. Now, is there a way to use the names of the columns to omit them, please? Thanks so much in advance! Sincerely, Erin -- Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown
2003 Jun 12
3
breaks
Dear R People: I have a question about a "sorting" problem, please. I have a vector xx: > xx [1] -2.0 1.4 -1.2 -2.2 0.4 1.5 -2.2 0.2 -0.4 -0.9 and a vector of breaks: > xx.y [1] -2.2000000 -0.9666667 0.2666667 1.5000000 I want to produce another vector z which contains the number of the class that each data point is in. for instance, xx[1] is between xx.y[1] and
2013 Oct 31
1
an rpy2, R cgi type question
Hi again. I'm putting together a little project with R, python, and a website. So I have an HTML file, a py file, an R file. Here is the HTML file: <form action="/cgi-bin/radio4.py" method="post" target="_blank"> <input type="radio" name="subject" value="Integrate" /> Integrate <input type="radio"
2008 Oct 29
6
substring/strsplit question
Dear R People: Here is a toy example: > x <- c("2E","5W","12H") > substr(x,2,2) [1] "E" "W" "2" > Sometimes x has 3 elements, sometimes 2. I want to extract the last element, and then extract the other 1 or 2 elements. How can I do this, please? TIA, Sincerely, Erin -- Erin Hodgess Associate Professor Department of
2012 Aug 13
6
named character question
Dear R People: Here is a goofy question: I want to extract the zip code from an address and here is my work so far: > add1 results.formatted_address "200 W Rosamond St, Houston, TX 77076, USA" > add1[1][32:36] <NA> <NA> <NA> <NA> <NA> NA NA NA NA NA > str(add1) Named chr "200 W Rosamond St, Houston, TX 77076,
2017 Dec 21
3
Building R from source with the PGI compiler
Hello I would like to build R from source and use the PGI compiler, rather than the GCC compiler. I saw the instructions for the Intel compiler in the R Installation Manual, but I didn't see the PGI. I tried a few times without instructions, but without success. Any suggestions would be most welcome. Also, I hope this is the right group for the question. Sincerely, Erin -- Erin
2010 Jun 21
3
tables
Dear R People: I have generated the following table: > table(zza$DEATH,zza$GENDER) F M 2009-04-21 0 1 2009-04-22 4 2 2009-04-24 6 0 2009-04-25 1 3 2009-04-26 2 0 2009-04-28 3 0 2009-04-29 2 2 However, instead of total counts in the F and M columns, I would like percents. How would I do this, please? thanks, Erin -- Erin
2006 Nov 14
3
lpSolve and mixed signs
Hi R People: If you have a linear programming problem in which some of the constraints have the "<=", some have ">=" and some have "=", all in the same problem, should the solver work? I'm having trouble with that. Any help much appreciated! Sincerely, Erin Hodgess mailto: hodgess at gator.uhd.eud whoops! mailto: hodgess at gator.uhd.edu
2012 Mar 15
4
replicating C example from the Extensions Manual problem
Dear R People: Here is something that I am sure is very simple. I'm just trying to re-create the C convolution example in the Extensions manual. Here is the subroutine: void convolve(double *a, int *na, double *b, int *nb, double *ab) { R_len_t i, j, nab = *na + *nb - 1; for(i = 0; i < nab; i++) ab[i] = 0.0; for(i = 0; i < *na; i++) for(j = 0; j < *nb; j++) ab[i + j] += a[i] *
2011 Mar 07
4
attr question
Dear R People: When I want to produce a small sample confidence interval using t.test, I get the following: > t.test(buzz$var1, conf.level=.98)$conf.int [1] 2.239337 4.260663 attr(,"conf.level") [1] 0.98 How do I keep the attr statement from printing, please? I'm sure it's something really simple. Thanks, Sincerely, Erin -- Erin Hodgess Associate Professor Department
2013 Jan 09
1
R2html and Blackboard LMS : solved
Everything is ok on Firefox, IE, and iPad. Thanks, Erin On Tue, Jan 8, 2013 at 7:58 PM, Erin Hodgess <erinm.hodgess at gmail.com> wrote: > Dear R People: > > Has anyone used R2HTML in web files that were on the Blackboard LMS, please? > > I'm starting to do these but wanted to know if there were any > potential pitfalls. > > Thanks, > Erin > > > --
2008 Mar 18
3
Tcl/tk question
Dear R Gurus: What is the name of the person who has all of the Tcl/tk stuff, please? I know it's James W, but can't remember his last name. I wanted to look at some of his examples. Thanks in advance! Sincerely, Erin -- Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown mailto: erinm.hodgess at gmail.com
2025 Apr 07
4
An opinion question, please
Hello everyone! I have an opinion question please. If I?m writing a new package, would you recommend using S3 or S4 structure, please? I know I will get lots of opinions, but that?s fine. Thanks, Erin Erin Hodgess, PhD mailto: erinm.hodgess at gmail.com [[alternative HTML version deleted]]
2007 May 25
1
windows to unix
Dear R People: Is there any way to take a Windows version of R, compiled from source, compress it, and put it on a Unix-like environment, please? thanks in advance, Sincerely, Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown mailto: hodgess at gator.uhd.edu
2009 May 03
7
running R on netbooks/minis?
Dear R People: Is it possible to run R on a netbook/mini, please? Thanks, Erin -- Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown mailto: erinm.hodgess at gmail.com