Full Trace Data?

Technical Support and Questions

Hi all, Is there any way to get the full trace data? I see there is a Original Data Raw Data output when viewing single sample, anyway to download that? Thanks Jon

  • created

    Jul 2018

  • last reply

    Jul 2018

  • replies

    1

  • users

    2

  • Default avatar
  • Thumb sebastian kuhlgert square
Thumb sebastian kuhlgert square

Sebastian

Jul 2018

Hi Jonathan,

the easiest way to get raw traces by using the R or Python packages (https://photosynq.org/software). When you use the library and you download the unprocessed dataset, you will have a column called data_raw with all your raw traces. But it would be an idea to allow the traces to be downloaded right from the graph when you open a single measurement.

Here is a an example in R:

email <- "john.doe@domain.com"    # Your email goes here

ID <- 1556                        # Your project ID goes here

processed\_data <- FALSE           # Get the raw data from the project

login <- PhotosynQ::login(email)

project\_data <- PhotosynQ::getProjectData(login$email, login$token, ID)

project\_data <- PhotosynQ::getProjectData(login$email, login$token, ID, processed\_data)

dataframe <- PhotosynQ::createDataframe(project\_info, project\_data)