Differences between revisions 2 and 14 (spanning 12 versions)
Revision 2 as of 2019-12-08 07:25:41
Size: 1843
Comment:
Revision 14 as of 2022-08-11 16:42:36
Size: 2603
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Datetime = = SPSS Data Types =
Line 3: Line 3:
== A warning about data input == SPSS exposes numeric and string data types.
Line 5: Line 5:
SPSS tries to be clever about reading data. Certain specialized forms of data are handled by formats that impact visualization and export, not storage. The primary example of this is date and time data.
Line 7: Line 7:
Under the format `TIME`, all of these are read in as `"01:02"`, even though the format is a minimum of 5-wide:
 * `"1:2"`
 * `"01 2"`
 * `"01:02"`
<<TableOfContents>>
Line 12: Line 9:
Under the format `DATE`, all of these are read in as `"28-OCT-90"`:
 * `"28-OCT-90"`
 * `"28/10/1990"`
 * `"28.OCT.90"`
 * `"28 October, 1990"`
----


== Numeric Data ==

'''Numeric''' data is stored as double-precision floating point.

Data formats adjust the visualized/exported representation of a data point, often only truncating the value. Adjusting these data formats does not destroy precision.

Given the literal value 123.45...

||'''General Format''' ||'''Format''' ||'''Representation''' ||
||Fw ||F8 ||123 ||
||Fw.d ||F8.1 ||123.4 ||
||Nw ||N8 ||00000123 ||
||Nw.d ||N8.1 ||000123.4 ||

See [[SPSS/NumericFunctions|here]] for the built-in library of numeric functions.
Line 20: Line 30:
== Datetime formats == === Date and Time Formats ===
Line 22: Line 32:
||'''Format''' ||'''Appears as...''' ||'''Note''' ||
||DATETIME20 ||`dd-MMM-yyyy hh:mm:ss` ||`MMM` is as JAN, not 001||
||DATETIME18 ||`dd-MMM-yyyy hh:mm` ||`MMM` is as JAN, not 001||
||DATE11 ||`dd-MMM-yyyy` ||`MMM` is as JAN, not 001||
||DATE7 ||`dd-MMM-yy` ||`MMM` is as JAN, not 001||
||TIME8 ||`hh:mm:ss` || ||
||TIME5 ||`hh:mm` || ||
||ADATE10 ||`mm/dd/yyyy` || ||
||ADATE8 ||`mm/dd/yy` || ||
||EDATE10 ||`dd.mm.yyyy` || ||
||EDATE8 ||`dd.mm.yy` || ||
'''Date''' data is stored as the number of seconds from midnight, October 14, 1582 to midnight on the specified date.

'''Datetime''' data is stored as the number of seconds to the specified time on the specified date.

'''Time''' data is stored as the number of seconds. This ''can'' be imagined as the number of seconds from midnight to the specified time, but that is not a ''necessary'' construct.

Keep in mind that 1 day = 60 (seconds) * 60 (minutes) * 24 (hours) = 86400 seconds.

||'''Format''' ||'''Representation''' ||
||`DATETIME20` ||`dd-MMM-yyyy hh:mm:ss` ||
||`DATETIME17` ||`dd-MMM-yyyy hh:mm` ||
||`DATE11` ||`dd-MMM-yyyy` ||
||`DATE9` ||`dd-MMM-yy` ||
||`TIME8` ||`hh:mm:ss` ||
||`TIME5` ||`hh:mm` ||
||`ADATE10` ||`mm/dd/yyyy` ||
||`EDATE10` ||`dd.mm.yyyy` ||
||`SDATE10` ||`yyyy/mm/dd` ||

Note that `MMM` appears as `JAN`, not `001`.

Note that `DATE11` and `DATE9` differ in the representation of years ''(4 and 2 digits respectively)''. The American, European, and Sortable date formats have a similar feature by swapping `[AES]DATE10` with `[AES]DATE8`.

See [[SPSS/DateTimeFunctions|here]] for the built-in library of date and time functions.

----
Line 36: Line 61:
---- == String Data ==
Line 38: Line 63:
= Numerics = '''String''' data is stored at a fixed length. This length is defined and adjusted through the format; `Aw` where `w` is the width.
Line 40: Line 65:
Formats only truncate the displayed value, or the value translated into data files. SPSS always retains data to original precision.

Given 123.45...

||'''Format''' ||'''Using...''' ||'''Appears as...''' ||
||Fw ||F8 ||123 ||
||Fw.d ||F8.1 ||123.4 ||
||Nw ||N8 ||00000123 ||
||Nw.d ||N8.1 ||000123.4 ||



----

= Strings =

String variables are only formatted to a length. The format is specified as `AN` where `N` is the width.
See [[SPSS/StringFunctions|here]] for the built-in library of string functions.

SPSS Data Types

SPSS exposes numeric and string data types.

Certain specialized forms of data are handled by formats that impact visualization and export, not storage. The primary example of this is date and time data.


Numeric Data

Numeric data is stored as double-precision floating point.

Data formats adjust the visualized/exported representation of a data point, often only truncating the value. Adjusting these data formats does not destroy precision.

Given the literal value 123.45...

General Format

Format

Representation

Fw

F8

123

Fw.d

F8.1

123.4

Nw

N8

00000123

Nw.d

N8.1

000123.4

See here for the built-in library of numeric functions.

Date and Time Formats

Date data is stored as the number of seconds from midnight, October 14, 1582 to midnight on the specified date.

Datetime data is stored as the number of seconds to the specified time on the specified date.

Time data is stored as the number of seconds. This can be imagined as the number of seconds from midnight to the specified time, but that is not a necessary construct.

Keep in mind that 1 day = 60 (seconds) * 60 (minutes) * 24 (hours) = 86400 seconds.

Format

Representation

DATETIME20

dd-MMM-yyyy hh:mm:ss

DATETIME17

dd-MMM-yyyy hh:mm

DATE11

dd-MMM-yyyy

DATE9

dd-MMM-yy

TIME8

hh:mm:ss

TIME5

hh:mm

ADATE10

mm/dd/yyyy

EDATE10

dd.mm.yyyy

SDATE10

yyyy/mm/dd

Note that MMM appears as JAN, not 001.

Note that DATE11 and DATE9 differ in the representation of years (4 and 2 digits respectively). The American, European, and Sortable date formats have a similar feature by swapping [AES]DATE10 with [AES]DATE8.

See here for the built-in library of date and time functions.


String Data

String data is stored at a fixed length. This length is defined and adjusted through the format; Aw where w is the width.

See here for the built-in library of string functions.


CategoryRicottone

SPSS/DataTypes (last edited 2023-06-13 05:00:25 by DominicRicottone)