createDataframe {PhotosynQ}R Documentation

Generate a Data Frame from 'PhotosynQ' project data

Description

This function creates a data frame with the data for a single 'PhotosynQ' Project.

Usage

createDataframe(project_info = NULL, project_data = NULL)

Arguments

project_info

Object returned by getProjectInfo

project_data

Object returned by getProjectData

Details

This function allows to create a data frame based on the Project's information (getProjectInfo) and the Project's data (getProjectData). If more than one Protocol was used in a Project, the data frame contains multiple frames, each one named after the corresponding measurement Protocol.

Value

Data frame(s) with Project's data for subsequent analysis. In case of issues it will return NULL.

Examples

project_info <- getProjectInfo(1566)
project_data <- getProjectData(1566)
createDataframe(project_info, project_data)

[Package PhotosynQ version 0.2.3 Index]