고객 리뷰를 분석하는 방법
그러나 일반적으로 고객 리뷰를 살짝 보려면 적어도 최소 5~7개의 리뷰를 스크롤해야 했습니다. 따라서 여러 리뷰를 읽은 후 제품에 대한 몇 가지 의견을 결론지을 것입니다. 하지만 모든 리뷰가 아니라 몇 개의 리뷰만 보았기 때문에 이 의견은 여전히 편파적일 수 있습니다.
따라서 각 제품에 대한 10개 또는 100개의 리뷰를 읽지 않고 제품에 대한 고객 리뷰를 한눈에 볼 수 있는 방법을 찾고 싶습니다. 기본적으로 고객 리뷰에 대한 다음 사항을 간략하게 살펴보고 싶습니다.
따라서 위의 사항을 도출하는 확실한 해결책은 고객 리뷰에 자연어 처리 기술을 적용하는 것입니다.
Let’s jump into real work :)
이 연습을 위해 Kaggle에서 Coursera 리뷰 데이터 세트를 가져왔습니다. 이 데이터에는 1835개의 코스에 대한 총 140317개의 리뷰가 있습니다. 다음은 리뷰 데이터의 샘플 형식입니다.
리뷰 수가 가장 많은 코스
기계 학습 코스의 리뷰 수가 가장 많습니다(8570). 그럼 머신러닝 강좌 리뷰만 필터링해서 분석해보겠습니다.
검토를 위해 감정 점수 추가
Let’s see some sample Reviews With Positive Sentiment Score.
Here we see most of the reviews says this course is awesome and also talking positively about Andrew Ng (the course instructor for machine learning).
Sample Reviews With Negative Sentiment Score.
Here we see the user says the difficulty level of the course is high and also talks about the certificate is expensive.
Sentiment Score Distribution.
Here we see most of the reviews have neutral to the positive sentiment with minor negative sentiment for the machine learning course.
Review Rating Distribution.
Here we see most of the ratings are 3.5 and above. So, this rating reflects the sentiment score we calculated in the above step.
Analysing Top Words
Analysing Positive Reviews
So, if we see people mentioned positive reviews more about the following
* Easily Understandable Course (from bigrams).
* Great/Good/Awesome course(from bigrams).
* Prof. Andrew Ng (from trigrams)
* Good Introduction machine learning Course(from trigrams)
* Good explanation about machine learning techniques(from trigrams)
Analysing Negative Reviews
So, if we see people mentioned negative reviews more about the following:
- Complex Concepts/ Subject
- Audio Quality
- Video Quality
- The course is a little bit difficult
- Need to pay in order to get certification for course
- Complex Computations applied
- This course needs linear algebra background.
Further Improvements
Git Repository
Reference
이 문제에 관하여(고객 리뷰를 분석하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/vishnuchilamakuru/analysing-customer-reviews-269k텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)