RosettaCodeData/Task/Text-processing-2/Julia/text-processing-2.jl

6 lines
222 B
Julia
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
dupdate = df[nonunique(df[:,[:Date]]),:][:Date]
println("The following rows have duplicate DATESTAMP:")
println(df[df[:Date] .== dupdate,:])
println("All values good in these rows:")
println(df[df[:ValidValues] .== 24,:])