Re: [racket-users] Mann-Whitney test?

2017-01-24 Thread Mitchell Wand
Yo! This conversation has gone seriously off-topic. Can y'all carry it on with some other subject line? --Mitch On Tue, Jan 24, 2017 at 11:38 AM, Tim Chase wrote: > Here is an interesting alternative: https://www.opencpu.org. > > You communicate with R processes via JSON.

[racket-users] testing for timeout in Rackunit?

2016-08-18 Thread Mitchell Wand
Of course you can't test for non-termination, but is there a relatively simple way to write something like (check-doesnt-terminate-quickly ) which would fail if the thunk terminates within the time limit, and succeeds otherwise? This would be useful in testing expressions that are claimed

Re: [racket-users] testing for timeout in Rackunit?

2016-08-19 Thread Mitchell Wand
>> (check-termination e) >> (check-false (false? (sync/timeout time-limit (thread (λ () (list >> e))) >> >> (check-termination (+ 1 1)) >> (check-termination #f) >> (check-termination (let loop () (loop))) >> >> >> — Matth

[racket-users] Mann-Whitney test?

2017-01-09 Thread Mitchell Wand
Does anybody have an implementation of the Mann-Whitney U test (or the equivalent Wilcoxson Rank test) in Racket? I imagine I could easily hack up my own, but somebody else may have done a better job of it already. --Mitch -- You received this message because you are subscribed to the Google

[racket-users] Racket function to get data from a Google Sheet?

2017-08-30 Thread Mitchell Wand
Has anybody written a Racket function to extract the data directly from a Google Sheet? I know I can export the Google sheet as a csv, and then use read-csv-file, but I'd like to automate the export step. --Mitch -- You received this message because you are subscribed to the Google Groups

[racket-users] test suite for hygienic expander?

2018-08-06 Thread Mitchell Wand
Is there a test suite for the macro expander? I assume that you must have one, but it would save me some effort if somebody can tell me where it is. I'm interested in finding out if you have good corner cases for testing a proposal for a hygienic expander. --Mitch -- You received this