Re: Wrote a new library - Comments and suggestions please!

2011-09-28 Thread Gregory Ewing
Steven D'Aprano wrote: I googled on "SAS PROC FREQ" and found this: http://support.sas.com/documentation/cdl/en/procstat/63104/HTML/default/procstat_freq_sect006.htm Documentation like that really makes me appreciate the sterling work done on Python's docs. I think you have to read it in con

Re: Wrote a new library - Comments and suggestions please!

2011-09-27 Thread alex23
Steven D'Aprano wrote: > I googled on "SAS PROC FREQ" and found this: > > http://support.sas.com/documentation/cdl/en/procstat/63104/HTML/defau... > > All the words are in English, but I have no idea what the function does, how > you would call it, and what it returns. Would it have been so hard t

Re: Wrote a new library - Comments and suggestions please!

2011-09-27 Thread Jon Clements
On Sep 27, 6:33 pm, Steven D'Aprano wrote: > Robert Kern wrote: > > On 9/27/11 10:24 AM, Tal Einat wrote: > >> I don't work with SAS so I have no reason to invest any time developing > >> for it. > > >> Also, as far as I can tell, SAS is far from free or open-source, meaning > >> I definitely am n

Re: Wrote a new library - Comments and suggestions please!

2011-09-27 Thread Mel
Steven D'Aprano wrote: > I googled on "SAS PROC FREQ" and found this: > http://support.sas.com/documentation/cdl/en/procstat/63104/HTML/default/procstat_freq_sect006.htm > > All the words are in English, but I have no idea what the function does, > how you would call it, and what it returns. Woul

Re: Wrote a new library - Comments and suggestions please!

2011-09-27 Thread Steven D'Aprano
Robert Kern wrote: > On 9/27/11 10:24 AM, Tal Einat wrote: >> I don't work with SAS so I have no reason to invest any time developing >> for it. >> >> Also, as far as I can tell, SAS is far from free or open-source, meaning >> I definitely am not interested in developing for it. > > I don't think

Re: Wrote a new library - Comments and suggestions please!

2011-09-27 Thread Robert Kern
On 9/27/11 10:24 AM, Tal Einat wrote: I don't work with SAS so I have no reason to invest any time developing for it. Also, as far as I can tell, SAS is far from free or open-source, meaning I definitely am not interested in developing for it. I don't think he's suggesting that you drop what

Re: Wrote a new library - Comments and suggestions please!

2011-09-27 Thread Tal Einat
I don't work with SAS so I have no reason to invest any time developing for it. Also, as far as I can tell, SAS is far from free or open-source, meaning I definitely am not interested in developing for it. My library solves a problem for which there is no existing solution in the world of Pytho

Re: Wrote a new library - Comments and suggestions please!

2011-09-26 Thread Jon Clements
On Sep 26, 12:23 pm, Tal Einat wrote: > The library is called RunningCalcs and is useful for running several > calculations on a single iterable of values. > > https://bitbucket.org/taleinat/runningcalcs/http://pypi.python.org/pypi/RunningCalcs/ > > I'd like some input on how this could be made mo

Wrote a new library - Comments and suggestions please!

2011-09-26 Thread Tal Einat
The library is called RunningCalcs and is useful for running several calculations on a single iterable of values. https://bitbucket.org/taleinat/runningcalcs/ http://pypi.python.org/pypi/RunningCalcs/ I'd like some input on how this could be made more useful and how to spread the word about it.