Coverage for mall/data.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.6.3, created at 2024-10-15 13:43 -0500

1import polars as pl 

2 

3 

4class MallData: 

5 reviews = pl.DataFrame( 

6 data=[ 

7 "This has been the best TV I've ever used. Great screen, and sound.", 

8 "I regret buying this laptop. It is too slow and the keyboard is too noisy", 

9 "Not sure how to feel about my new washing machine. Great color, but hard to figure", 

10 ], 

11 schema=[("review", pl.String)], 

12 )