mixpanelGetEventsFromFiles {RMixpanel}R Documentation

Get Events From Files

Description

Get an R matrix filled with event data using data saved into files.

Usage

mixpanelGetEventsFromFiles(account, from, to, eventNames=c(), 
  select=TRUE, blocksize=500000, df = FALSE, verbose=TRUE)

Arguments

account

A mixpanel account, as defined in mixpanelCreateAccount.

from

Start date in either format <"yyyy-mm-dd"> or <yyyymmdd>. Inclusive.

to

End date in either format <"yyyy-mm-dd"> or <yyyymmdd>. Inclusive.

eventNames

If an array of event names, only these are returned by the method.

select

If "select" is an array of column names, only the specified properties are selected. If TRUE, all columns are selected.

blocksize

Block size for reading files from disk.

df

Clean data and return data.frame instead of matrix?

verbose

If TRUE more output is generated.

Value

A character matrix showing one event per line. The first column represents the name of the event, the other column the event properties.

Author(s)

Meinhard Ploner

See Also

mixpanelGetEvents


[Package RMixpanel version 0.7-1 Index]