RosettaCodeData/Task/Text-processing-2/Julia/text-processing-2.julia
2018-06-22 20:57:24 +00:00

5 lines
222 B
Text

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,:])