@@ -111,7 +111,7 @@ overMeanDeriveTest =
111111 expectedMeans = [15.0 , 15.0 , 60.0 , 60.0 , 60.0 ] :: [Double ]
112112 actualMeans = case DI. getColumn " group_mean" result of
113113 Nothing -> error " group_mean column not found"
114- Just col -> DI. toList @ Double col
114+ Just c -> DI. toList @ Double c
115115
116116overSumTest :: Test
117117overSumTest =
@@ -134,7 +134,7 @@ overSumTest =
134134 expectedSums = [30 , 30 , 300 , 300 ] :: [Int ]
135135 actualSums = case DI. getColumn " group_sum" result of
136136 Nothing -> error " group_sum column not found"
137- Just col -> DI. toList @ Int col
137+ Just c -> DI. toList @ Int c
138138
139139overCountTest :: Test
140140overCountTest =
@@ -157,7 +157,7 @@ overCountTest =
157157 expectedCounts = [3 , 3 , 3 , 2 , 2 ] :: [Int ]
158158 actualCounts = case DI. getColumn " group_count" result of
159159 Nothing -> error " group_count column not found"
160- Just col -> DI. toList @ Int col
160+ Just c -> DI. toList @ Int c
161161
162162mixedGlobalAndOverTest :: Test
163163mixedGlobalAndOverTest =
@@ -182,7 +182,7 @@ mixedGlobalAndOverTest =
182182 expectedDeviations = [- 5.0 , 5.0 , - 50.0 , 50.0 ] :: [Double ]
183183 actualDeviations = case DI. getColumn " deviation" result of
184184 Nothing -> error " deviation column not found"
185- Just col -> DI. toList @ Double col
185+ Just c -> DI. toList @ Double c
186186
187187-- | Example from https://www.sumsar.net/blog/pandas-feels-clunky-when-coming-from-r/
188188blogPostExampleGlobal :: Test
0 commit comments