#Load RQDA and open the GUI library(RQDA) RQDA() #Autocode through codingBySearch codingBySearch("goals",fid=getFileIds(),cid=9, seperator="[.!?]") #Export the coded file exportCodedFile("exported_file.html", fid=4, closeAfter = TRUE) #Check which codes were present in each file files_by_codes<-filesByCodes() #View the table files_by_codes #Write that table to a .csv file write.csv(files_by_codes,"Files by Codes.csv") #To calculate IRR and percent agreement... # 1) Have one coder code a file with a code specific to the coder # for example: positive_outcomes_coder1 # 2) After coding delete that code # 3) Have the second coder code the file with a code specific to taht coder # for example: positive_outcomes_coder2 # 4) After coding, use the function undelete() to bring back coder 1's codings # 5) Use crossCodes() to check agreement #This opens a window where you can select which codes to undelete undelete(type="code",ask=TRUE)