quick-r: data types

Post on 09-Nov-2015

214 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

DESCRIPTION

QuickR

TRANSCRIPT

  • Data Input

    Data types

    Importing Data

    Keyboard Input

    Database Input

    Exporting Data

    Viewing Data

    Variable Labels

    Value Labels

    Missing Data

    Date Values

    R in Action

    R in Action (2nd ed) significantly

    expands upon this material. Use

    promo code ria38 for a 38%

    discount.

    Top Menu

    Data TypesR has a wide variety of data types including scalars, vectors (numerical, character, logical), matrices,

    data frames, and lists.

    Vectors

    a

  • Home

    The R Interface

    Data Input

    Data Management

    Basic Statistics

    Advanced Statistics

    Basic Graphs

    Advanced Graphs

    Blog

    ArraysArrays are similar to matrices but can have more than two dimensions. See help(array) for details.

    Data FramesA data frame is more general than a matrix, in that different columns can have different modes

    (numeric, character, factor, etc.). This is similar to SAS and SPSS datasets.

    d

  • summary(gender)

    An ordered factor is used to represent an ordinal variable.

    # variable rating coded as "large", "medium", "small'

    rating

top related