--- language: - ru multilinguality: - monolingual size_categories: - 10Kgeneral sentiment and sentiments on 5 aspects: quality, service, equipment, food, location. ### Data Fields Each sample contains the following fields: - **review_id**; - **content**: review text; - **general**; - **quality**; - **service**; - **equipment**; - **food**; - **location**. ### Python ```python3 import pandas as pd df = pd.read_json('medical_institutions_reviews.jsonl', lines=True) df.sample(5) ```