We can have a look at a ‘plot’ of ‘Temperature (C)’ alone to view distribution.
# state required librarylibrary(readxl)library(dplyr)craig_y_fan_ddu_combined <-read_excel("Dipwell_data_logger/craig_y_fan_ddu_combined.xlsx")# let's see a 'histogram' of temperature.hist(craig_y_fan_ddu_combined$`Temperature (C)`)
We can have a look at a ‘plot’ of ‘Depth (cm)’ alone to view distribution.
library(readxl)library(dplyr)craig_y_fan_ddu_combined <-read_excel("Dipwell_data_logger/craig_y_fan_ddu_combined.xlsx")# let's see a 'histogram' of temperature.hist(craig_y_fan_ddu_combined$`Depth (cm)`)
We can have a look at a ‘plot’ of ‘Temperature (C)’ against ‘Depth (cm)’ to view distribution.