├── .gitignore ├── BERT.R ├── BERT_Classifier.R ├── BERT_Classifier_Commented.R ├── BERT_Embeddings.R ├── DocumentTermMatrix.R ├── F1_forGPT.R ├── GPT_Prompting.R ├── IRR.R ├── LICENSE ├── README.md ├── bookNLP_characterCounts.R ├── bookNLP_difficulty.R ├── bookNLP_genderPredict.R ├── bookNLP_getDialogueMeasures.R ├── bookNLP_getSuperSenseCounts.R ├── bookNLP_getWordCountsBySuperSense.R ├── bookNLP_selectAllSentences.R ├── bookNLP_selectRandomSentences.R ├── bookNLP_selectRandomSentencesNoDialogue.R ├── bookNLP_selectRandomSentencesWithCharacters.R ├── bookNLP_selectRandomSentences_wSupersenseFeatures.R ├── bookNLP_workingWithBookNLPData.R ├── chunkTexts.R ├── clusterAnalysis.R ├── collocateBuilder_PMI.R ├── collocateBuilder_distinctiveWords.R ├── columnToTextFile.R ├── convertTXTtoCSV.R ├── corpusComparison_multiFeatures.R ├── corpusComparison_singleFeature.R ├── difficultyKorpus.R ├── doc2vec.R ├── emotionAnalysis.R ├── emotionalArcs.R ├── fightinWords.R ├── ggplotTemplates.R ├── gutenbergR.R ├── hathiTools.R ├── machineLearning.R ├── sankey.R ├── selectRandomFiles.R ├── sentimentFunctions.R ├── shortestDistance_Functions.R ├── standardErrorFunction.R ├── t.test.R ├── textCleaningFunction.R ├── textWordCount.R ├── topicStability.R ├── travelingSalesmanViz.R ├── webScraping.R └── word2Vec.R /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | .DS_Store 3 | 4 | 5 | -------------------------------------------------------------------------------- /BERT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/BERT.R -------------------------------------------------------------------------------- /BERT_Classifier.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/BERT_Classifier.R -------------------------------------------------------------------------------- /BERT_Classifier_Commented.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/BERT_Classifier_Commented.R -------------------------------------------------------------------------------- /BERT_Embeddings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/BERT_Embeddings.R -------------------------------------------------------------------------------- /DocumentTermMatrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/DocumentTermMatrix.R -------------------------------------------------------------------------------- /F1_forGPT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/F1_forGPT.R -------------------------------------------------------------------------------- /GPT_Prompting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/GPT_Prompting.R -------------------------------------------------------------------------------- /IRR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/IRR.R -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/README.md -------------------------------------------------------------------------------- /bookNLP_characterCounts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/bookNLP_characterCounts.R -------------------------------------------------------------------------------- /bookNLP_difficulty.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/bookNLP_difficulty.R -------------------------------------------------------------------------------- /bookNLP_genderPredict.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/bookNLP_genderPredict.R -------------------------------------------------------------------------------- /bookNLP_getDialogueMeasures.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/bookNLP_getDialogueMeasures.R -------------------------------------------------------------------------------- /bookNLP_getSuperSenseCounts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/bookNLP_getSuperSenseCounts.R -------------------------------------------------------------------------------- /bookNLP_getWordCountsBySuperSense.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/bookNLP_getWordCountsBySuperSense.R -------------------------------------------------------------------------------- /bookNLP_selectAllSentences.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/bookNLP_selectAllSentences.R -------------------------------------------------------------------------------- /bookNLP_selectRandomSentences.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/bookNLP_selectRandomSentences.R -------------------------------------------------------------------------------- /bookNLP_selectRandomSentencesNoDialogue.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/bookNLP_selectRandomSentencesNoDialogue.R -------------------------------------------------------------------------------- /bookNLP_selectRandomSentencesWithCharacters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/bookNLP_selectRandomSentencesWithCharacters.R -------------------------------------------------------------------------------- /bookNLP_selectRandomSentences_wSupersenseFeatures.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/bookNLP_selectRandomSentences_wSupersenseFeatures.R -------------------------------------------------------------------------------- /bookNLP_workingWithBookNLPData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/bookNLP_workingWithBookNLPData.R -------------------------------------------------------------------------------- /chunkTexts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/chunkTexts.R -------------------------------------------------------------------------------- /clusterAnalysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/clusterAnalysis.R -------------------------------------------------------------------------------- /collocateBuilder_PMI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/collocateBuilder_PMI.R -------------------------------------------------------------------------------- /collocateBuilder_distinctiveWords.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/collocateBuilder_distinctiveWords.R -------------------------------------------------------------------------------- /columnToTextFile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/columnToTextFile.R -------------------------------------------------------------------------------- /convertTXTtoCSV.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/convertTXTtoCSV.R -------------------------------------------------------------------------------- /corpusComparison_multiFeatures.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/corpusComparison_multiFeatures.R -------------------------------------------------------------------------------- /corpusComparison_singleFeature.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/corpusComparison_singleFeature.R -------------------------------------------------------------------------------- /difficultyKorpus.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/difficultyKorpus.R -------------------------------------------------------------------------------- /doc2vec.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/doc2vec.R -------------------------------------------------------------------------------- /emotionAnalysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/emotionAnalysis.R -------------------------------------------------------------------------------- /emotionalArcs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/emotionalArcs.R -------------------------------------------------------------------------------- /fightinWords.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/fightinWords.R -------------------------------------------------------------------------------- /ggplotTemplates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/ggplotTemplates.R -------------------------------------------------------------------------------- /gutenbergR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/gutenbergR.R -------------------------------------------------------------------------------- /hathiTools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/hathiTools.R -------------------------------------------------------------------------------- /machineLearning.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/machineLearning.R -------------------------------------------------------------------------------- /sankey.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/sankey.R -------------------------------------------------------------------------------- /selectRandomFiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/selectRandomFiles.R -------------------------------------------------------------------------------- /sentimentFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/sentimentFunctions.R -------------------------------------------------------------------------------- /shortestDistance_Functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/shortestDistance_Functions.R -------------------------------------------------------------------------------- /standardErrorFunction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/standardErrorFunction.R -------------------------------------------------------------------------------- /t.test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/t.test.R -------------------------------------------------------------------------------- /textCleaningFunction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/textCleaningFunction.R -------------------------------------------------------------------------------- /textWordCount.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/textWordCount.R -------------------------------------------------------------------------------- /topicStability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/topicStability.R -------------------------------------------------------------------------------- /travelingSalesmanViz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/travelingSalesmanViz.R -------------------------------------------------------------------------------- /webScraping.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/webScraping.R -------------------------------------------------------------------------------- /word2Vec.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piperandrew/textMiningR/HEAD/word2Vec.R --------------------------------------------------------------------------------