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

6 lines
222 B
Text
Raw Permalink Normal View History

2018-06-22 20:57:24 +00: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,:])