I imported 2 csv files containing experiment data, one being the control group and one the test group. Heads shown here
The problem is that in 'Gaze_T' the columns 5+ are of type double, while in 'Gaze_C' they're of type integer.
So when doing a summary on the distance in both dataframes I get different outputs
How can I convert the integer columns in Gaze_C to double?
use as.DATATYPE(column)
as.double(Gaze_T$Distance)
This converts the column Distance in Gaze_T to double.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With