├── Lou (2013) The Research of Micro-blog Sentiment Analysis. CLSW. Springer.pdf ├── Shen (2009) Emotion mining research on microblog. IEEE.pdf ├── dict ├── LIWC Dictionaries │ ├── FrenchLIWCDictionary.dic │ ├── LIWC2001WordStat.txt │ ├── LIWC2001_Categories.txt │ ├── LIWC2001_English.dic │ ├── LIWC2001_German.dic │ ├── LIWC2001_Spanish.dic │ ├── LIWC2001_SpanishE.dic │ ├── LIWC2001_SpanishWordStat.txt │ ├── LIWC2007WordStat.zip │ ├── LIWC2007_Categories.txt │ ├── LIWC2007_Dutch.dic │ ├── LIWC2007_English080730.dic │ ├── LIWC2007_Italian.dic │ ├── LIWC2007_Pronoun.dic │ ├── LIWC2007_RIOT_Scan.txt │ └── LIWC2007dictionary poster.xls ├── insufficient.txt ├── inverse.txt ├── ish.txt ├── more.txt ├── most.txt ├── negative.txt ├── positive.txt ├── very.txt ├── zero.test.txt ├── 中文停用词表 │ └── 哈工大停用词表扩展.txt ├── 台湾大学简体中文情感极性词典ntusd │ ├── ntusd-negative.txt │ └── ntusd-positive.txt ├── 情感词汇本体 │ ├── 情感词汇本体.xlsx │ └── 情感词汇本体库说明文档.doc └── 知网情感分析用词语集 │ ├── 主张词语(中文).txt │ ├── 主张词语(英文).txt │ ├── 正面情感词语(中文).txt │ ├── 正面情感词语(英文).txt │ ├── 正面评价词语(中文).txt │ ├── 正面评价词语(英文).txt │ ├── 程度级别词语(中文).txt │ ├── 程度级别词语(英文).txt │ ├── 负面情感词语(中文).txt │ ├── 负面情感词语(英文).txt │ ├── 负面评价词语(中文).txt │ └── 负面评价词语(英文).txt ├── sentiment-master ├── README └── sentiment │ ├── ChangeLog │ ├── DESCRIPTION │ ├── NAMESPACE │ ├── R │ ├── classify_emotion.R │ ├── classify_polarity.R │ └── create_matrix.R │ ├── data │ ├── datalist │ ├── emotions.csv.gz │ └── subjectivity.csv.gz │ └── man │ ├── classify_emotion.Rd │ ├── classify_polarity.Rd │ ├── create_matrix.Rd │ ├── emotions.Rd │ └── subjectivity.Rd ├── sentimentCN.R ├── sentimentCN.py ├── sentiment_analysis-master ├── .Rhistory ├── .gitattributes ├── .gitignore ├── AFINN │ ├── AFINN-111.txt │ ├── AFINN-96.txt │ └── AFINN-README.txt ├── negative-words.txt ├── polarityData │ ├── rt-polaritydata.README.1.0.txt │ └── rt-polaritydata │ │ ├── rt-polarity-neg.txt │ │ └── rt-polarity-pos.txt ├── positive-words.txt ├── readme.md └── sentiment_analysis.R ├── sentiment_analysis.R └── sentiment_anlaysis_using_machine_learning_methods.R /Lou (2013) The Research of Micro-blog Sentiment Analysis. CLSW. Springer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/Lou (2013) The Research of Micro-blog Sentiment Analysis. CLSW. Springer.pdf -------------------------------------------------------------------------------- /Shen (2009) Emotion mining research on microblog. IEEE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/Shen (2009) Emotion mining research on microblog. IEEE.pdf -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/FrenchLIWCDictionary.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/FrenchLIWCDictionary.dic -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2001WordStat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2001WordStat.txt -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2001_Categories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2001_Categories.txt -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2001_English.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2001_English.dic -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2001_German.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2001_German.dic -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2001_Spanish.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2001_Spanish.dic -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2001_SpanishE.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2001_SpanishE.dic -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2001_SpanishWordStat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2001_SpanishWordStat.txt -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2007WordStat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2007WordStat.zip -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2007_Categories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2007_Categories.txt -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2007_Dutch.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2007_Dutch.dic -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2007_English080730.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2007_English080730.dic -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2007_Italian.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2007_Italian.dic -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2007_Pronoun.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2007_Pronoun.dic -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2007_RIOT_Scan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2007_RIOT_Scan.txt -------------------------------------------------------------------------------- /dict/LIWC Dictionaries/LIWC2007dictionary poster.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/LIWC Dictionaries/LIWC2007dictionary poster.xls -------------------------------------------------------------------------------- /dict/insufficient.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/insufficient.txt -------------------------------------------------------------------------------- /dict/inverse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/inverse.txt -------------------------------------------------------------------------------- /dict/ish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/ish.txt -------------------------------------------------------------------------------- /dict/more.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/more.txt -------------------------------------------------------------------------------- /dict/most.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/most.txt -------------------------------------------------------------------------------- /dict/negative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/negative.txt -------------------------------------------------------------------------------- /dict/positive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/positive.txt -------------------------------------------------------------------------------- /dict/very.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/very.txt -------------------------------------------------------------------------------- /dict/zero.test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/zero.test.txt -------------------------------------------------------------------------------- /dict/中文停用词表/哈工大停用词表扩展.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/中文停用词表/哈工大停用词表扩展.txt -------------------------------------------------------------------------------- /dict/台湾大学简体中文情感极性词典ntusd/ntusd-negative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/台湾大学简体中文情感极性词典ntusd/ntusd-negative.txt -------------------------------------------------------------------------------- /dict/台湾大学简体中文情感极性词典ntusd/ntusd-positive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/台湾大学简体中文情感极性词典ntusd/ntusd-positive.txt -------------------------------------------------------------------------------- /dict/情感词汇本体/情感词汇本体.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/情感词汇本体/情感词汇本体.xlsx -------------------------------------------------------------------------------- /dict/情感词汇本体/情感词汇本体库说明文档.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/情感词汇本体/情感词汇本体库说明文档.doc -------------------------------------------------------------------------------- /dict/知网情感分析用词语集/主张词语(中文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/知网情感分析用词语集/主张词语(中文).txt -------------------------------------------------------------------------------- /dict/知网情感分析用词语集/主张词语(英文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/知网情感分析用词语集/主张词语(英文).txt -------------------------------------------------------------------------------- /dict/知网情感分析用词语集/正面情感词语(中文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/知网情感分析用词语集/正面情感词语(中文).txt -------------------------------------------------------------------------------- /dict/知网情感分析用词语集/正面情感词语(英文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/知网情感分析用词语集/正面情感词语(英文).txt -------------------------------------------------------------------------------- /dict/知网情感分析用词语集/正面评价词语(中文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/知网情感分析用词语集/正面评价词语(中文).txt -------------------------------------------------------------------------------- /dict/知网情感分析用词语集/正面评价词语(英文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/知网情感分析用词语集/正面评价词语(英文).txt -------------------------------------------------------------------------------- /dict/知网情感分析用词语集/程度级别词语(中文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/知网情感分析用词语集/程度级别词语(中文).txt -------------------------------------------------------------------------------- /dict/知网情感分析用词语集/程度级别词语(英文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/知网情感分析用词语集/程度级别词语(英文).txt -------------------------------------------------------------------------------- /dict/知网情感分析用词语集/负面情感词语(中文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/知网情感分析用词语集/负面情感词语(中文).txt -------------------------------------------------------------------------------- /dict/知网情感分析用词语集/负面情感词语(英文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/知网情感分析用词语集/负面情感词语(英文).txt -------------------------------------------------------------------------------- /dict/知网情感分析用词语集/负面评价词语(中文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/知网情感分析用词语集/负面评价词语(中文).txt -------------------------------------------------------------------------------- /dict/知网情感分析用词语集/负面评价词语(英文).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/dict/知网情感分析用词语集/负面评价词语(英文).txt -------------------------------------------------------------------------------- /sentiment-master/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/README -------------------------------------------------------------------------------- /sentiment-master/sentiment/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/ChangeLog -------------------------------------------------------------------------------- /sentiment-master/sentiment/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/DESCRIPTION -------------------------------------------------------------------------------- /sentiment-master/sentiment/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/NAMESPACE -------------------------------------------------------------------------------- /sentiment-master/sentiment/R/classify_emotion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/R/classify_emotion.R -------------------------------------------------------------------------------- /sentiment-master/sentiment/R/classify_polarity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/R/classify_polarity.R -------------------------------------------------------------------------------- /sentiment-master/sentiment/R/create_matrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/R/create_matrix.R -------------------------------------------------------------------------------- /sentiment-master/sentiment/data/datalist: -------------------------------------------------------------------------------- 1 | subjectivity 2 | emotions 3 | -------------------------------------------------------------------------------- /sentiment-master/sentiment/data/emotions.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/data/emotions.csv.gz -------------------------------------------------------------------------------- /sentiment-master/sentiment/data/subjectivity.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/data/subjectivity.csv.gz -------------------------------------------------------------------------------- /sentiment-master/sentiment/man/classify_emotion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/man/classify_emotion.Rd -------------------------------------------------------------------------------- /sentiment-master/sentiment/man/classify_polarity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/man/classify_polarity.Rd -------------------------------------------------------------------------------- /sentiment-master/sentiment/man/create_matrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/man/create_matrix.Rd -------------------------------------------------------------------------------- /sentiment-master/sentiment/man/emotions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/man/emotions.Rd -------------------------------------------------------------------------------- /sentiment-master/sentiment/man/subjectivity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment-master/sentiment/man/subjectivity.Rd -------------------------------------------------------------------------------- /sentimentCN.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentimentCN.R -------------------------------------------------------------------------------- /sentimentCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentimentCN.py -------------------------------------------------------------------------------- /sentiment_analysis-master/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/.Rhistory -------------------------------------------------------------------------------- /sentiment_analysis-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/.gitattributes -------------------------------------------------------------------------------- /sentiment_analysis-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/.gitignore -------------------------------------------------------------------------------- /sentiment_analysis-master/AFINN/AFINN-111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/AFINN/AFINN-111.txt -------------------------------------------------------------------------------- /sentiment_analysis-master/AFINN/AFINN-96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/AFINN/AFINN-96.txt -------------------------------------------------------------------------------- /sentiment_analysis-master/AFINN/AFINN-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/AFINN/AFINN-README.txt -------------------------------------------------------------------------------- /sentiment_analysis-master/negative-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/negative-words.txt -------------------------------------------------------------------------------- /sentiment_analysis-master/polarityData/rt-polaritydata.README.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/polarityData/rt-polaritydata.README.1.0.txt -------------------------------------------------------------------------------- /sentiment_analysis-master/polarityData/rt-polaritydata/rt-polarity-neg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/polarityData/rt-polaritydata/rt-polarity-neg.txt -------------------------------------------------------------------------------- /sentiment_analysis-master/polarityData/rt-polaritydata/rt-polarity-pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/polarityData/rt-polaritydata/rt-polarity-pos.txt -------------------------------------------------------------------------------- /sentiment_analysis-master/positive-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/positive-words.txt -------------------------------------------------------------------------------- /sentiment_analysis-master/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/readme.md -------------------------------------------------------------------------------- /sentiment_analysis-master/sentiment_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis-master/sentiment_analysis.R -------------------------------------------------------------------------------- /sentiment_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_analysis.R -------------------------------------------------------------------------------- /sentiment_anlaysis_using_machine_learning_methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cesar456/sentimentCN/HEAD/sentiment_anlaysis_using_machine_learning_methods.R --------------------------------------------------------------------------------