I have successfully used for smaller problems the -tuples- command contributed by Luchman, Klein, and Nick Cox
I am now hoping to use the program with larger lists (e.g. n=32) but am finding that the program is freezing Stata (on my computer, at least) at around 28 list elements.
For example, this command works fine:
but after laboring for a while processing this command
I receive on my Mac an alert: "Your system has run out of application memory" and I need then to Force-Quit Stata.
Does anyone have any experience with setting any of the program's options at other than defaults that might help here? Or any suggestions on memory management? Or is anyone aware of other programs that would generate the same output as does -tuples-? Thanks in advance for any suggestions.
Code:
ssc describe tuples
For example, this command works fine:
Code:
tuples 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25, min(5) max(5)
Code:
tuples 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28, min(5) max(5)
Does anyone have any experience with setting any of the program's options at other than defaults that might help here? Or any suggestions on memory management? Or is anyone aware of other programs that would generate the same output as does -tuples-? Thanks in advance for any suggestions.
Comment