Skip to content

Documentation

tianyiwangnova edited this page Feb 3, 2021 · 29 revisions

Welcome to the 2021_project__ReviewMiner wiki!


_class_ **ReviewMiner**_(df: pd.DataFrame = None, id_column: str = None, review_column: str = None)_


  • Parameters:

df: pd.DataFrame, default=None

a data frame where each row is a comment/review; The data frame should have at least an ID column that stores the unique IDs of the comments, and a review column where the actual comments/reviews are stored. You can initialize the class without df if you just want to use some of its methods to analyze external datasets. You can assign values to df later by <class>.df = <your_data_frame>

id_column: str, default=None

the name of the column that stores the unique IDs of the comments

review_column: str, default=None

the name of the column where the actual comments/reviews are stored


  • Methods:

one_time_analysis(aspect_mute_list: list = None, report_interval = None)

Clone this wiki locally