similar to: [off-topic] crossword

Displaying 20 results from an estimated 10000 matches similar to: "[off-topic] crossword"

2024 Dec 13
3
[off-topic] crossword
Well to complicate things, I don't think RULES is the answer. This is a cryptic crossword clue. They usually contain the answer twice (well... Cryptically!!) Writes in C or R, say. I think the answer is CODER If you look up the definition of say in the dictionary one option is: 1. give instructions to or direct somebody to do something with authority (verb) That's the simple
2024 Dec 13
2
[off-topic] crossword
I do not understand the question and I do not understand the answer. Possibly one confounds the other. -----Original Message----- From: R-help <r-help-bounces at r-project.org> On Behalf Of Erin Hodgess Sent: Thursday, December 12, 2024 11:56 AM To: Bill Dunlap <williamwdunlap at gmail.com> Cc: r-help at R-project.org Subject: Re: [R] [off-topic] crossword [External Email] RULES!
2024 Dec 12
1
[off-topic] crossword
RULES! Erin Hodgess, PhD mailto: erinm.hodgess at gmail.com On Thu, Dec 12, 2024 at 9:42?AM Bill Dunlap <williamwdunlap at gmail.com> wrote: > The New York Times crossword this morning had the clue (51 down, 5 letters) > "Writes in C or R, say". > > -Bill > > [[alternative HTML version deleted]] > > ______________________________________________
2024 Dec 13
2
[off-topic] crossword
Crossword answers have to be drop-in replacements for the clue in a sentence. Hence replacing "She writes in C and R, say." with "She codes" would work, but "She coder" would not. (If one interpreted C and R as the names of third party candidates for office, then "She votes" would work, but the across words made "codes" a more reasonable
2024 Dec 15
1
[off-topic] crossword
On Fri, 13 Dec 2024, Bill Dunlap writes: > Crossword answers have to be drop-in replacements for the clue in a > sentence. Hence replacing > "She writes in C and R, say." > with > "She codes" > would work, but "She coder" would not. > > (If one interpreted C and R as the names of third party candidates for > office, then "She
2012 Apr 27
2
determining if a function exists in a particular package
Hello R People: Is there a way to determine if a function exists in a particular package, please? I looked at exists and objects, but they seem to refer to an environment rather than a package. I was thinking of something like: ifelse(exists(functiona) in MASS, print(1:10), print(5)) Thanks, Erin -- Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences
2013 Jun 19
2
evaluation of equations from Ryacas
Hello again. Now I have the following: > xx [1] "Solve(1 - R/100==(2*y)/10000,R)" > yacas(xx) expression(list(R == 100 * (1 - 2 * y/10000))) > I would like to put in a value for y and obtain R. I've tried more stuff with eval and Eval, but no luck yet. Any suggestions would be much appreciated. Thanks, Erin -- Erin Hodgess Associate Professor Department of Computer
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
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"
2011 Dec 08
2
a weird "cut" question
Dear R People: I have the following data: > ail.df[,1] [1] 47677 47602 47678 47905 47909 47906 47605 47673 47607 > cut(ail.df[,1],breaks=3) [1] (4.76e+04,4.77e+04] (4.76e+04,4.77e+04] (4.76e+04,4.77e+04] [4] (4.78e+04,4.79e+04] (4.78e+04,4.79e+04] (4.78e+04,4.79e+04] [7] (4.76e+04,4.77e+04] (4.76e+04,4.77e+04] (4.76e+04,4.77e+04] Levels: (4.76e+04,4.77e+04] (4.77e+04,4.78e+04]
2012 Sep 07
2
creating a symmetric matrix
Dear R People: Suppose I have the following: x <- 1:4 And I want to create the following matrix: 1 2 3 4 2 1 2 3 3 2 1 2 4 3 2 1 Is there a function in place for this, please? I looked at symMatrix in micEcon and some of the items in Matrix, but they didn't quite do it. I can put together something quickly, of course, but it seems likely that this would exist. Thanks, Erin --
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 > > > --
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
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] *
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
2019 Feb 28
3
Problem with compiling OpenBLAS to work with R
I believe that repo just follows the directions on my blog. Without seeing Dr. Hodges?s code, my initial concern is the many references to Cygwin. My method specifically does not use Cygwin but MSYS2 and Mingw64/Rtools35. That will likely change to solely Rtools40 once R3.6 is released due to the Msys system being built in to it. There may be some library conflicts between Cygwin and
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
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
2008 Oct 15
4
a really simple question on polynomial multiplication
Dear R people: Is there a way to perform simple polynomial multiplication; that is, something like (x - 3) * (x + 3) = x^2 - 9, please? I looked in poly and polyroot and expression. There used to be a package that had this, maybe? thanks, Erin -- Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown mailto: erinm.hodgess at