search for: fortunes

Displaying 20 results from an estimated 2538 matches for "fortunes".

Did you mean: fortune
2010 Sep 01
5
[semi-OT] Using fortune() in an email signature
...ich is then included in mail messages. The problem is that it's got extraneous junk in it and I can't figure out how to get rid of it. This is the command that generates the fortune: /usr/bin/R --no-save --no-restore -q < /home/sl70/print-fortune.R (where print-fortune.R is just library(fortunes) fortune() ) This produces this: > library(fortunes) > fortune() Michael Watson: Hopefully this one isn't in the manual or I am about to get shot :-S Peter Dalgaard: *Kapow*... -- Michael Watson and Peter Dalgaard (question...
2014 Dec 21
2
How to get fortunes in R
I was going through http://dirk.eddelbuettel.com/papers/r_package_development_nov2014.pdf and found this on pg-3 > fortunes::fortune(92) ## ## If you don't go with R now, you will someday. ## -- David Kane (on whether to use R or S-PLUS) ## R-SIG-Finance (November 2004) However, when I tried it on my machine, I get rajulocal at hogwarts:~/work/r_programming$ R -q > fortunes::fortune(92) Error in loadNamespace(n...
2010 Jan 06
1
fortunes: 250th fortune
Dear useRs, it's a new year and time for a new CRAN-version of the "fortunes" package. Version 1.3-7 is now online at http://CRAN.R-project.org/package=fortunes which contains the 250th fortune: R> fortune(250) As Obi-Wan Kenobi may have said in Star Wars: "Use the source, Luke!" -- Barry Rowlingson (answering a question on the documentation of...
2010 Jan 06
1
fortunes: 250th fortune
Dear useRs, it's a new year and time for a new CRAN-version of the "fortunes" package. Version 1.3-7 is now online at http://CRAN.R-project.org/package=fortunes which contains the 250th fortune: R> fortune(250) As Obi-Wan Kenobi may have said in Star Wars: "Use the source, Luke!" -- Barry Rowlingson (answering a question on the documentation of...
2017 Sep 30
4
Converting SAS Code
...>> The conceptual paradigm for R is only marginally commensurate with >> that of >> standard statistical software. >> You must immerse yourself in R to become proficient. > > Fortune nomination. For newer list members wondering what Rolf is talking about try: library(fortunes) fortune() to get a flavor! There are many pearls of wisdom. > > cheers, > > Rolf > [[alternative HTML version deleted]]
2014 Dec 21
0
How to get fortunes in R
Have you installed the fortunes package? From within R you can go install.packages("fortunes") If you have already installed it then there is something deeper going on. On 21/12/2014 11:37, kamaraju kusumanchi wrote: > I was going through > http://dirk.eddelbuettel.com/papers/r_package_development_nov2014.pdf &g...
2004 Aug 12
0
"new" package fortunes 1.0-3
...evious versions had been on CRAN for some months but hadn't been announced to the R community via this list until now. All packages are available from the CRAN master site in source form - binary versions should be available from the mirrors in the next days. So the first announcement is for fortunes 1.0-3: The fortunes package provides simple infrastructure for reading fortunes from a .csv file and displaying them. Furthermore, it contains a growing list of fortunes related to R, mainly collected from the mailing lists but also from quotes at conferences. The author list contains me (as I'...
2004 Aug 12
0
"new" package fortunes 1.0-3
...evious versions had been on CRAN for some months but hadn't been announced to the R community via this list until now. All packages are available from the CRAN master site in source form - binary versions should be available from the mirrors in the next days. So the first announcement is for fortunes 1.0-3: The fortunes package provides simple infrastructure for reading fortunes from a .csv file and displaying them. Furthermore, it contains a growing list of fortunes related to R, mainly collected from the mailing lists but also from quotes at conferences. The author list contains me (as I'...
2005 Jul 24
1
cvs commit: src/games/fortune/fortune fortune.c
On Sun, Jul 24, 2005 at 04:06:02PM +0200, Poul-Henning Kamp wrote: +> In message <20050724135738.GM46538@darkness.comp.waw.pl>, Pawel Jakub Dawidek writes: +> +> >We should probably test entropy quality on boot. +> >I've somewhere userland version of /sys/dev/rndtest/ which implements +> >FIPS140-2 tests for (P)RNGs. We can use put it into rc.d/ and warn users.
2011 May 12
3
Reproducible use case for R crash after updating R
...is might have been discussed before, but below is a "not-so-unlikely" use case where the user follows normal procedures, updates R to a major release version, and then R crashes: 1. Use runs R stable (e.g. v2.13.0). 2. User installs a package with a namespace, e.g. install.packages("fortunes"). 3. User uses the package and one of the package's objects are assigned to the global env, e.g. foo <- fortune. 4. The user quits R and stores the session data, e.g. q("yes"). The session is stored in users home directory. 5. User update to new major release of R (e.g. 2.14...
2005 May 18
1
problem to exclude
...une/datfiles/CVS/Root 25 100% 0.00kB/s 0:00:00 NetBSD-release-1-5/src/games/fortune/datfiles/CVS/Tag 12 100% 0.00kB/s 0:00:00 NetBSD-release-1-5/src/games/fortune/datfiles/Makefile 2180 100% 0.00kB/s 0:00:00 NetBSD-release-1-5/src/games/fortune/datfiles/fortunes 582080 100% 2.28MB/s 0:00:00 NetBSD-release-1-5/src/games/fortune/datfiles/fortunes-o.fake 127 100% 0.00kB/s 0:00:00 NetBSD-release-1-5/src/games/fortune/datfiles/fortunes-o.real 73303 100% 5.38MB/s 0:00:00 NetBSD-release-1-5/src/games/fortune/datfiles/fortun...
2006 Sep 13
1
Error: package/namespace load failed for 'fortunes'
Hello! I have the following R code in my .Rprofile file - just for fun. library(fortunes) fortune() detach("package:fortunes") This works nicely in R 2.3.1, but it throws the following error under latest R-devel: ... ... Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()...
2007 Mar 04
1
fortune() in .Rprofile conflicts with R CMD INSTALL
Hello, This is about fortune package, but I think that might be related also to base R, so I am sending to package maintainer and R-devel list. I have the following in my .Rprofile to break monotony of code writing library(utils) library(fortunes) fortune() detach("package:fortunes") so I get a fortune every time I start R. It seems that this conflicts with R CMD INSTALL in latest R-devel on Linux. Two things can happen: 1. R CMD INSTALL fails ---------------------------------------------------------------------- $ R-devel CMD...
2005 Feb 02
0
fortune update: 100th fortune
Dear useRs, version 1.1-0 of the fortunes package is available from CRAN. It now contains 100 R fortunes. Thanks to all who contributed. Best wishes, Z _______________________________________________ R-packages mailing list R-packages at stat.math.ethz.ch https://stat.ethz.ch/mailman/listinfo/r-packages
2005 Feb 02
0
fortune update: 100th fortune
Dear useRs, version 1.1-0 of the fortunes package is available from CRAN. It now contains 100 R fortunes. Thanks to all who contributed. Best wishes, Z _______________________________________________ R-packages mailing list R-packages at stat.math.ethz.ch https://stat.ethz.ch/mailman/listinfo/r-packages
2008 Jun 03
2
surprising predicting capabilities
Hi, I noticed the following fortune in R 2.7 and 2.6.2: fortune('Spreads') If anything, there should be a Law: Thou Shalt Not Even Think Of Producing A Graph That Looks Like Anything From A Spreadsheet. -- Ted Harding (in a discussion about producing graphics) R-help (August 2008) Just wondering, what function and library gave this detailed prediction? Cheers
2017 Sep 30
0
Converting SAS Code
And appropriatesly > library(fortunes) > fortune() SAS seems to be to statistical computing what Microsoft is to personal computing. ?? -- Bill Venables ????? 'Exegeses on Linear Models' paper (May 2000) On Saturday, September 30, 2017, 4:57:23 PM EDT, Rolf Turner <r.turner at auckland.ac.nz> wrote: On 01/1...
2010 Feb 05
2
(Another) Bates fortune?
I vote to 'fortunize' Doug Bates on Hierarchical data sets: which software to use? "The widespread use of spreadsheets or SPSS data sets or SAS data sets which encourage the "single table with a gargantuan number of columns, most of which are missing data in most cases" approach to organization of longitudinal data is regrettable."
2011 Dec 16
1
Fortune? -- was Re: optim with simulated annealing SANN ...
Folks: I thought John Nash's comment below was profound and a possible Fortunes candidate: (Aside: I believe it applies to a great deal of what is discussed on this list, not just stochastic optimization.) Cheers, Bert ... (in the context of stochastic optimization) >... As with many tools in this domain, for effective use they > require more knowledge than many of th...
2011 Nov 22
4
evaluation question
Dear R People: Hope you're having a nice day. Here is a character vector: > yz [1] "pexp(3.2,rate=1)" > str(yz) chr "pexp(3.2,rate=1)" > And I would like to evaluate that vector. I tried: > eval(as.expression(yz)) [1] "pexp(3.2,rate=1)" > But that doesn't work. Any suggestions would be most welcome. I have a feeling that it's quite