createDataframe {PhotosynQ} | R Documentation |
This function creates a data frame with the data for a single 'PhotosynQ' Project.
createDataframe(project_info = NULL, project_data = NULL)
project_info |
Object returned by |
project_data |
Object returned by |
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.
Data frame(s) with Project's data for subsequent analysis. In case of
issues it will return NULL
.
project_info <- getProjectInfo(1566)
project_data <- getProjectData(1566)
createDataframe(project_info, project_data)