Limitations on the number of cases and variables in softwares

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Limitations on the number of cases and variables in softwares

Carlos Renato
Dear friends

Through the Microsoft Web site got the specifications of Excel. There are also these information for SPSS somewhere? And for R-Project?

http://office.microsoft.com/en-us/excel-help/excel-specifications-and-limits-HP010073849.aspx


Carlos Renato
Statistician - Brazil
Reply | Threaded
Open this post in threaded view
|

Re: Limitations on the number of cases and variables in softwares

Jon K Peck
SPSS Statistics limitations are documented in the Command Syntax Reference manual accessible from the Help menu.  General limitations are given in the Universals section.  If individual commands have limits, they are documented under those commands.

Jon Peck (no "h") aka Kim
Senior Software Engineer, IBM
[hidden email]
new phone: 720-342-5621




From:        Carlos Renato <[hidden email]>
To:        [hidden email]
Date:        11/23/2011 04:04 PM
Subject:        [SPSSX-L] Limitations on the number of cases and variables in              softwares
Sent by:        "SPSSX(r) Discussion" <[hidden email]>




Dear friends

Through the Microsoft Web site got the specifications of Excel. There are
also these information for SPSS somewhere? And for R-Project?

http://office.microsoft.com/en-us/excel-help/excel-specifications-and-limits-HP010073849.aspx


Carlos Renato
Statistician - Brazil

--
View this message in context:
http://spssx-discussion.1045642.n5.nabble.com/Limitations-on-the-number-of-cases-and-variables-in-softwares-tp5018600p5018600.html
Sent from the SPSSX Discussion mailing list archive at Nabble.com.

=====================
To manage your subscription to SPSSX-L, send a message to
[hidden email] (not to SPSSX-L), with no body text except the
command. To leave the list, send the command
SIGNOFF SPSSX-L
For a list of commands to manage subscriptions, send the command
INFO REFCARD


Reply | Threaded
Open this post in threaded view
|

Re: Limitations on the number of cases and variables in softwares

Albert-Jan Roskam
In reply to this post by Carlos Renato
Hello,

For R the amount of memory and the total number of objects are relevant: http://stat.ethz.ch/R-manual/R-devel/library/base/html/Memory-limits.html
 
Cheers!!
Albert-Jan

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
All right, but apart from the sanitation, the medicine, education, wine, public order, irrigation, roads, a fresh water system, and public health, what have the Romans ever done for us?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

From: Carlos Renato <[hidden email]>
To: [hidden email]
Sent: Thursday, November 24, 2011 12:00 AM
Subject: [SPSSX-L] Limitations on the number of cases and variables in softwares

Dear friends

Through the Microsoft Web site got the specifications of Excel. There are
also these information for SPSS somewhere? And for R-Project?

http://office.microsoft.com/en-us/excel-help/excel-specifications-and-limits-HP010073849.aspx


Carlos Renato
Statistician - Brazil

--
View this message in context: http://spssx-discussion.1045642.n5.nabble.com/Limitations-on-the-number-of-cases-and-variables-in-softwares-tp5018600p5018600.html
Sent from the SPSSX Discussion mailing list archive at Nabble.com.

=====================
To manage your subscription to SPSSX-L, send a message to
[hidden email] (not to SPSSX-L), with no body text except the
command. To leave the list, send the command
SIGNOFF SPSSX-L
For a list of commands to manage subscriptions, send the command
INFO REFCARD


Reply | Threaded
Open this post in threaded view
|

Re: Limitations on the number of cases and variables in softwares

Art Kendall
In reply to this post by Carlos Renato
With SPSS almost all practical data sets are limited by the amount of available disk space and RAM you have rather than program limits except some procedures which have specific variable or case limitations as in the documentation.


After checking your hard disk space, you can simulate a data set for your computer's practical  with something like the syntax below.
You could test your disk storage by doing a save.


You need about 3 or 4 times as much disk space in addition to the original data.

On my machine with a RAID disk rebuild working at the same time the print commands produced this for
2,500,000 cases with 1,000 variables
'start generation'        3761530:16:33.480
'start descriptives 1'   3761530:29:41.748
'start descriptives 2'   3761530:30:21.713
13 minutes to simulate the data
40 seconds to do the descriptives


Art Kendall
Social Research Consultants

* cases and items.
new file.
input program.
vector x (1000,f3).
loop id = 1 to 2500000.
loop #p = 1 to 1000.
compute x(#p) = rnd(rv.normal(50,10)).
end loop.
end case.
end loop.
end file.
end input program.
DO IF $CASENUM=1.
PRINT /"'start generation'"   $time (time20.3).
END IF.
execute.
DO IF $CASENUM=1.
PRINT /"'start descriptives 1'"   $time (time20.3).
END IF.
descriptives variables = x1 to x10 /statistics=all.
DO IF $CASENUM=1.
PRINT /"'start descriptives 2'"   $time (time20.3).
END IF.
descriptives variables = x1 to x10 /statistics=all.

On 11/23/2011 6:00 PM, Carlos Renato wrote:
Dear friends

Through the Microsoft Web site got the specifications of Excel. There are
also these information for SPSS somewhere? And for R-Project?

http://office.microsoft.com/en-us/excel-help/excel-specifications-and-limits-HP010073849.aspx


Carlos Renato
Statistician - Brazil

--
View this message in context: http://spssx-discussion.1045642.n5.nabble.com/Limitations-on-the-number-of-cases-and-variables-in-softwares-tp5018600p5018600.html
Sent from the SPSSX Discussion mailing list archive at Nabble.com.

=====================
To manage your subscription to SPSSX-L, send a message to
[hidden email] (not to SPSSX-L), with no body text except the
command. To leave the list, send the command
SIGNOFF SPSSX-L
For a list of commands to manage subscriptions, send the command
INFO REFCARD

===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD
Art Kendall
Social Research Consultants