File size: 39,158 Bytes
e04de6f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 |
---
dataset_info:
features:
- name: question
dtype: string
- name: choices
sequence: string
- name: answer
dtype: string
- name: unit
dtype: string
- name: table_title
dtype: string
- name: table
dtype: string
- name: table_for_pd
struct:
- name: ''
sequence: string
- name: A Footlong shoe
dtype: 'null'
- name: A Toes Knows shoe
dtype: 'null'
- name: A little spicy
sequence: string
- name: A plant
dtype: 'null'
- name: A tent
sequence: string
- name: A vegetarian diet
dtype: 'null'
- name: Acoustic guitar
dtype: 'null'
- name: Acrylic paint
dtype: 'null'
- name: Activity
sequence: string
- name: Actor
dtype: 'null'
- name: Adult
dtype: 'null'
- name: Afternoon
dtype: 'null'
- name: Age (years)
sequence: string
- name: Also in the mustache competition
dtype: 'null'
- name: Amount spent
sequence: string
- name: An insect
dtype: 'null'
- name: An omnivorous diet
dtype: 'null'
- name: Animal
sequence: string
- name: Animal rights
sequence: string
- name: Ankle pain
dtype: 'null'
- name: Apartment complex
dtype: 'null'
- name: Apple trees
dtype: 'null'
- name: Apples
dtype: 'null'
- name: Apples eaten
dtype: 'null'
- name: April
sequence: string
- name: Argentina
sequence: string
- name: Arrive
sequence: string
- name: Arts education
dtype: 'null'
- name: Ash wood
sequence: string
- name: August
dtype: 'null'
- name: Available Funds
sequence: string
- name: Back door of the house
dtype: 'null'
- name: Bacon
dtype: 'null'
- name: Bananas eaten
sequence: string
- name: Band member
sequence: string
- name: Banks
sequence: string
- name: Baskets
dtype: 'null'
- name: Batwing
dtype: 'null'
- name: Beads
dtype: 'null'
- name: Beautician
sequence: string
- name: Beds
dtype: 'null'
- name: Begin
sequence: string
- name: Beverage
sequence: string
- name: Bicycle
sequence: string
- name: Big
dtype: 'null'
- name: Biochemistry
dtype: 'null'
- name: Blonde hair
sequence: string
- name: Blue
dtype: 'null'
- name: Blue car
dtype: 'null'
- name: Blue eyes
dtype: 'null'
- name: Blueberry bagels
dtype: 'null'
- name: Bookcases
dtype: 'null'
- name: Books checked out
sequence: string
- name: Books read
sequence: string
- name: Bowl
dtype: 'null'
- name: Boxes of cookies
sequence: string
- name: Boxes sold
dtype: 'null'
- name: Boys
sequence: string
- name: Brazil
sequence: string
- name: Breed
sequence: string
- name: Bridge
sequence: string
- name: Bright orange
dtype: 'null'
- name: Broken lights
dtype: 'null'
- name: Broken tooth
dtype: 'null'
- name: Bronze status
dtype: 'null'
- name: Browline frames
dtype: 'null'
- name: Brown bears
dtype: 'null'
- name: Brown eyes
dtype: 'null'
- name: Building
dtype: 'null'
- name: Butterfly
dtype: 'null'
- name: Caffeinated
dtype: 'null'
- name: Caffeine-free
dtype: 'null'
- name: Cancer research
sequence: string
- name: Candidate
dtype: 'null'
- name: Candy necklaces made
sequence: string
- name: Car
sequence: string
- name: Carpool
dtype: 'null'
- name: Cat
dtype: 'null'
- name: Cat eye frames
dtype: 'null'
- name: Cause
sequence: string
- name: Cereal
sequence: string
- name: Certain
sequence: string
- name: Chalk
dtype: 'null'
- name: Change in phone price
sequence: string
- name: Change in points
sequence: string
- name: Change in water level (in.)
sequence: string
- name: Cheese
sequence: string
- name: Cheese pizzas
sequence: string
- name: Cheetahs
dtype: 'null'
- name: Cherry trees
dtype: 'null'
- name: Chicken noodle
dtype: 'null'
- name: Child
dtype: 'null'
- name: Children
sequence: string
- name: Chinese
dtype: 'null'
- name: Chocolate
dtype: 'null'
- name: Chore
dtype: 'null'
- name: Chunky peanut butter
dtype: 'null'
- name: Cinnamon
dtype: 'null'
- name: Circle
dtype: 'null'
- name: City
sequence: string
- name: Class
sequence: string
- name: Clean water
sequence: string
- name: Club
dtype: 'null'
- name: Color
dtype: 'null'
- name: Column 1
sequence: string
- name: Column 2
sequence: string
- name: Column 3
sequence: string
- name: Column 4
sequence: string
- name: Column 5
sequence: string
- name: Column 6
sequence: string
- name: Committee
sequence: string
- name: Company
sequence: string
- name: Contribution ($)
sequence: string
- name: Cookie
dtype: 'null'
- name: Cookies eaten
sequence: string
- name: Correctly placed
dtype: 'null'
- name: Cotton
dtype: 'null'
- name: Country
dtype: 'null'
- name: Creamy peanut butter
dtype: 'null'
- name: Crocodiles
sequence: string
- name: Cup
dtype: 'null'
- name: Daisies
dtype: 'null'
- name: Dancer
dtype: 'null'
- name: Date
sequence: string
- name: Day
sequence: string
- name: Dealership
sequence: string
- name: Depart
sequence: string
- name: Description
sequence: string
- name: Desert
dtype: 'null'
- name: Dessert
sequence: string
- name: Destination
sequence: string
- name: Detective
dtype: 'null'
- name: Displeased
sequence: string
- name: District
dtype: 'null'
- name: Diver
dtype: 'null'
- name: Doctor
dtype: 'null'
- name: Dog
dtype: 'null'
- name: Dog trainer
sequence: string
- name: Donation level
sequence: string
- name: Donkeys
dtype: 'null'
- name: Drink
sequence: string
- name: Ducks
sequence: string
- name: E-readers
dtype: 'null'
- name: Electric guitar
dtype: 'null'
- name: Electrical line worker
dtype: 'null'
- name: Elevation (cm)
dtype: 'null'
- name: Elevation (ft.)
sequence: string
- name: Elevation (m)
sequence: string
- name: Emails
sequence: string
- name: Employee
sequence: string
- name: Employees
dtype: 'null'
- name: End
sequence: string
- name: Event
sequence: string
- name: Expenses
sequence: string
- name: Falcons
dtype: 'null'
- name: Family
dtype: 'null'
- name: Farm
dtype: 'null'
- name: Farmer
sequence: string
- name: Favorite number
sequence: string
- name: Female
dtype: 'null'
- name: Ferry
sequence: string
- name: Fifth graders
sequence: string
- name: Finger puppets made
sequence: string
- name: Fish
dtype: 'null'
- name: Flavor
dtype: 'null'
- name: Flavors
dtype: 'null'
- name: Flooring
dtype: 'null'
- name: Flower pots painted
sequence: string
- name: Flowers picked
sequence: string
- name: Fly
sequence: string
- name: Foam
dtype: 'null'
- name: Food preparation time (minutes)
sequence: string
- name: Forgetful
dtype: 'null'
- name: Fourth graders
sequence: string
- name: Frequency
sequence: string
- name: Friday
dtype: 'null'
- name: Front door of the house
dtype: 'null'
- name: Fruit
dtype: 'null'
- name: Fruits
sequence: string
- name: Fruity
dtype: 'null'
- name: Funds raised ($)
sequence: string
- name: Game
sequence: string
- name: Games won
sequence: string
- name: Geese
sequence: string
- name: Gem color
sequence: string
- name: Gift
dtype: 'null'
- name: Giraffe
dtype: 'null'
- name: Girls
sequence: string
- name: Goals
sequence: string
- name: Goals scored
dtype: 'null'
- name: Grade
dtype: 'null'
- name: Grape jelly
dtype: 'null'
- name: Gray squirrels
dtype: 'null'
- name: Green
sequence: string
- name: Greeting cards made
dtype: 'null'
- name: Grey beard
dtype: 'null'
- name: Group
dtype: 'null'
- name: Ham sandwiches
sequence: string
- name: Hawks
dtype: 'null'
- name: Heart-shaped straw
dtype: 'null'
- name: High heels
dtype: 'null'
- name: High school
sequence: string
- name: Hits
dtype: 'null'
- name: Horizontally
dtype: 'null'
- name: Hours
sequence: string
- name: Hours billed
dtype: 'null'
- name: Hunger prevention
sequence: string
- name: Ice cream flavor
dtype: 'null'
- name: Income
dtype: 'null'
- name: Incorrectly placed
dtype: 'null'
- name: Instrument
dtype: 'null'
- name: Intake
dtype: 'null'
- name: Irresponsible
dtype: 'null'
- name: Item
dtype: 'null'
- name: Job training
sequence: string
- name: Journalism
dtype: 'null'
- name: June
sequence: string
- name: Key chains made
dtype: 'null'
- name: Kilograms
sequence: string
- name: Kilograms caught
dtype: 'null'
- name: Kilograms of food
dtype: 'null'
- name: Kilometers
sequence: string
- name: Knee pain
dtype: 'null'
- name: Lake
sequence: string
- name: Language
dtype: 'null'
- name: Laps
sequence: string
- name: Laps run
dtype: 'null'
- name: Lawyer
dtype: 'null'
- name: Lazy
dtype: 'null'
- name: 'Leaf '
sequence: string
- name: Leaf rubbings made
sequence: string
- name: Leather
dtype: 'null'
- name: Leftover loaves
dtype: 'null'
- name: Leopards
dtype: 'null'
- name: Letters mailed
sequence: string
- name: Letters written
sequence: string
- name: Literature
dtype: 'null'
- name: Lizards
sequence: string
- name: Location
sequence: string
- name: Lower elementary students
sequence: string
- name: Lunch
sequence: string
- name: Male
dtype: 'null'
- name: March
sequence: string
- name: Marine biologist
sequence: string
- name: Mascot
dtype: 'null'
- name: Masks made
sequence: string
- name: Matches
sequence: string
- name: Material
sequence: string
- name: Math
dtype: 'null'
- name: May
sequence: string
- name: Medium
dtype: 'null'
- name: Meeting
sequence: string
- name: Metal
sequence: string
- name: Miles
sequence: string
- name: Mini size
dtype: 'null'
- name: Mint
dtype: 'null'
- name: Minutes
sequence: string
- name: Minutes spent driving
dtype: 'null'
- name: Misses
sequence: string
- name: Mixture
sequence: string
- name: Monday
sequence: string
- name: Month
sequence: string
- name: Morning
dtype: 'null'
- name: Mountain bike tires
sequence: string
- name: Movie
sequence: string
- name: Name
sequence: string
- name: Non-organic
dtype: 'null'
- name: Not spicy
sequence: string
- name: November
dtype: 'null'
- name: Number drawn
sequence: string
- name: Number guessed
sequence: string
- name: Number of CDs
sequence: string
- name: Number of T-shirts
dtype: 'null'
- name: Number of Web pages
sequence: string
- name: Number of apartments
sequence: string
- name: Number of apples
sequence: string
- name: Number of aquariums
dtype: 'null'
- name: Number of autographs
sequence: string
- name: Number of bagels
dtype: 'null'
- name: Number of bags
dtype: 'null'
- name: Number of bags of popcorn
sequence: string
- name: Number of balloons
sequence: string
- name: Number of bananas
dtype: 'null'
- name: Number of barns
dtype: 'null'
- name: Number of baseballs
dtype: 'null'
- name: Number of basketball hoops
sequence: string
- name: Number of basketballs
dtype: 'null'
- name: Number of baskets
sequence: string
- name: Number of beads
dtype: 'null'
- name: Number of belts
dtype: 'null'
- name: Number of bins
dtype: 'null'
- name: Number of birds
sequence: string
- name: Number of blocks
dtype: 'null'
- name: Number of blocks of cheese
sequence: string
- name: Number of blouses
dtype: 'null'
- name: Number of blue beads
dtype: 'null'
- name: Number of blue blocks
dtype: 'null'
- name: Number of blueberry scones
dtype: 'null'
- name: Number of books
sequence: string
- name: Number of booths
dtype: 'null'
- name: Number of bottles
sequence: string
- name: Number of bouquets
dtype: 'null'
- name: Number of bowls
dtype: 'null'
- name: Number of bowls of cereal
dtype: 'null'
- name: Number of boxes
sequence: string
- name: Number of boxes of blueberries
dtype: 'null'
- name: Number of boxes of cereal
dtype: 'null'
- name: Number of boxes of grapes
sequence: string
- name: Number of boxes purchased
sequence: string
- name: Number of bracelets
sequence: string
- name: Number of branches
dtype: 'null'
- name: Number of bricks
dtype: 'null'
- name: Number of buckets
sequence: string
- name: Number of bull's-eyes
sequence: string
- name: Number of bunches
dtype: 'null'
- name: Number of bunches of bananas
dtype: 'null'
- name: Number of buses
dtype: 'null'
- name: Number of bushes
dtype: 'null'
- name: Number of butterflies
dtype: 'null'
- name: Number of buttons
dtype: 'null'
- name: Number of cages
sequence: string
- name: Number of calls
sequence: string
- name: Number of candles
sequence: string
- name: Number of cans of food
sequence: string
- name: Number of carrots
dtype: 'null'
- name: Number of cars
sequence: string
- name: Number of cartons of yogurt
dtype: 'null'
- name: Number of cartwheels
sequence: string
- name: Number of cases
sequence: string
- name: Number of caterpillars
dtype: 'null'
- name: Number of chairs
dtype: 'null'
- name: Number of charms
sequence: string
- name: Number of chefs
dtype: 'null'
- name: Number of cherries
dtype: 'null'
- name: Number of chocolate-chip cookies
dtype: 'null'
- name: Number of chocolates
dtype: 'null'
- name: Number of closets
dtype: 'null'
- name: Number of clubs
sequence: string
- name: Number of coat racks
dtype: 'null'
- name: Number of coats
dtype: 'null'
- name: Number of coconut bars
dtype: 'null'
- name: Number of coins
sequence: string
- name: Number of comic strips
sequence: string
- name: Number of computers
sequence: string
- name: Number of cookies
sequence: string
- name: Number of cooks
sequence: string
- name: Number of couches
sequence: string
- name: Number of cows
sequence: string
- name: Number of crates
sequence: string
- name: Number of crayons
dtype: 'null'
- name: Number of cupcakes
sequence: string
- name: Number of cups
sequence: string
- name: Number of customers
sequence: string
- name: Number of desk drawers
dtype: 'null'
- name: Number of desks
sequence: string
- name: Number of diamonds
sequence: string
- name: Number of dishes
dtype: 'null'
- name: Number of dishwashers
dtype: 'null'
- name: Number of dogs registered
sequence: string
- name: Number of donations
dtype: 'null'
- name: Number of donors
sequence: string
- name: Number of donuts
sequence: string
- name: Number of doors
dtype: 'null'
- name: Number of drawers
dtype: 'null'
- name: Number of dresses
dtype: 'null'
- name: Number of ducks
dtype: 'null'
- name: Number of e-mails
dtype: 'null'
- name: Number of emeralds
dtype: 'null'
- name: Number of employees
sequence: string
- name: Number of empty seats
dtype: 'null'
- name: Number of entries
sequence: string
- name: Number of envelopes
dtype: 'null'
- name: Number of fan letters
sequence: string
- name: Number of farms
sequence: string
- name: Number of ferrets
dtype: 'null'
- name: Number of fields
sequence: string
- name: Number of fireflies
sequence: string
- name: Number of fish
dtype: 'null'
- name: Number of fish bowls
dtype: 'null'
- name: Number of flashlights
dtype: 'null'
- name: Number of flowers
sequence: string
- name: Number of frogs
sequence: string
- name: Number of garages
dtype: 'null'
- name: Number of garnets
dtype: 'null'
- name: Number of gerbils
dtype: 'null'
- name: Number of glass beads
sequence: string
- name: Number of glasses
sequence: string
- name: Number of goals
sequence: string
- name: Number of goats
dtype: 'null'
- name: Number of goldfish
dtype: 'null'
- name: Number of graduates
sequence: string
- name: Number of grasshoppers
dtype: 'null'
- name: Number of green blocks
dtype: 'null'
- name: Number of greeting cards
dtype: 'null'
- name: Number of grocery stores
dtype: 'null'
- name: Number of guests
dtype: 'null'
- name: Number of gym lockers
dtype: 'null'
- name: Number of hamburger places
dtype: 'null'
- name: Number of hammers
sequence: string
- name: Number of hats
sequence: string
- name: Number of highlighters
sequence: string
- name: Number of history books
dtype: 'null'
- name: Number of horse pastures
dtype: 'null'
- name: Number of horses
dtype: 'null'
- name: Number of hot dogs
sequence: string
- name: Number of houses
dtype: 'null'
- name: Number of houses sold
sequence: string
- name: Number of hydrants
dtype: 'null'
- name: Number of ice cream cones
sequence: string
- name: Number of ice cubes
sequence: string
- name: Number of jackets
dtype: 'null'
- name: Number of jars
sequence: string
- name: Number of jelly beans
sequence: string
- name: Number of juice boxes
dtype: 'null'
- name: Number of kilograms
dtype: 'null'
- name: Number of kitchen cabinets
dtype: 'null'
- name: Number of ladders
dtype: 'null'
- name: Number of lakes
dtype: 'null'
- name: Number of laps
sequence: string
- name: Number of laundry baskets
sequence: string
- name: Number of laundry hampers
dtype: 'null'
- name: Number of lawn mowers
dtype: 'null'
- name: Number of leaves
dtype: 'null'
- name: Number of lemon bars
dtype: 'null'
- name: Number of lemon scones
dtype: 'null'
- name: Number of light bulbs
dtype: 'null'
- name: Number of light switches
sequence: string
- name: Number of lilies
sequence: string
- name: Number of listeners
dtype: 'null'
- name: Number of lockers
dtype: 'null'
- name: Number of logs
dtype: 'null'
- name: Number of magazines
dtype: 'null'
- name: Number of marigolds
dtype: 'null'
- name: Number of markers
dtype: 'null'
- name: Number of math teachers
sequence: string
- name: Number of members
sequence: string
- name: Number of miles
sequence: string
- name: Number of movies
dtype: 'null'
- name: Number of muffins
dtype: 'null'
- name: Number of mustard bottles
sequence: string
- name: Number of nails
sequence: string
- name: Number of necklaces
sequence: string
- name: Number of new customers
dtype: 'null'
- name: Number of newspapers
sequence: string
- name: Number of notebooks
dtype: 'null'
- name: Number of notepads
dtype: 'null'
- name: Number of oatmeal cookies
dtype: 'null'
- name: Number of offices
dtype: 'null'
- name: Number of olives
sequence: string
- name: Number of opals
sequence: string
- name: Number of open seats
dtype: 'null'
- name: Number of orange beads
sequence: string
- name: Number of orange fish
dtype: 'null'
- name: Number of oranges
dtype: 'null'
- name: Number of packages
sequence: string
- name: Number of pages
sequence: string
- name: Number of pairs of boots
sequence: string
- name: Number of pairs of jeans
sequence: string
- name: Number of pairs of pants
dtype: 'null'
- name: Number of pairs of sandals
sequence: string
- name: Number of pairs of scissors
dtype: 'null'
- name: Number of pairs of shorts
dtype: 'null'
- name: Number of paper bags
sequence: string
- name: Number of paper clips
dtype: 'null'
- name: Number of parakeets
dtype: 'null'
- name: Number of parking spots
dtype: 'null'
- name: Number of passengers
dtype: 'null'
- name: Number of patients
dtype: 'null'
- name: Number of pearls
sequence: string
- name: Number of pears
dtype: 'null'
- name: Number of pencils
sequence: string
- name: Number of pens
dtype: 'null'
- name: Number of people
sequence: string
- name: Number of pepper shakers
dtype: 'null'
- name: Number of peppermint candies
dtype: 'null'
- name: Number of peppers
dtype: 'null'
- name: Number of pets
sequence: string
- name: Number of phone calls
dtype: 'null'
- name: Number of photographs
sequence: string
- name: Number of pickles
dtype: 'null'
- name: Number of pictures
sequence: string
- name: Number of pieces of candy
sequence: string
- name: Number of pieces of mail
dtype: 'null'
- name: Number of pieces of taffy
dtype: 'null'
- name: Number of pies
sequence: string
- name: Number of pigs
dtype: 'null'
- name: Number of piles
dtype: 'null'
- name: Number of pizza places
sequence: string
- name: Number of pizzas
sequence: string
- name: Number of plants
sequence: string
- name: Number of plastic beads
dtype: 'null'
- name: Number of plates
sequence: string
- name: Number of platters
dtype: 'null'
- name: Number of ponds
sequence: string
- name: Number of poppies
dtype: 'null'
- name: Number of popsicles
sequence: string
- name: Number of practices
sequence: string
- name: Number of pretzels
sequence: string
- name: Number of prizes given out
sequence: string
- name: Number of pull-ups
dtype: 'null'
- name: Number of pumpkin bars
sequence: string
- name: Number of pumpkin scones
dtype: 'null'
- name: Number of pumpkins
sequence: string
- name: Number of purple beads
sequence: string
- name: Number of purple crayons
dtype: 'null'
- name: Number of rabbits
sequence: string
- name: Number of raincoats
dtype: 'null'
- name: Number of rats
dtype: 'null'
- name: Number of red beads
sequence: string
- name: Number of red blocks
sequence: string
- name: Number of red markers
sequence: string
- name: Number of respondents
sequence: string
- name: Number of restaurant tables
sequence: string
- name: Number of restaurants
dtype: 'null'
- name: Number of riders
sequence: string
- name: Number of rides
dtype: 'null'
- name: Number of rolls of tape
dtype: 'null'
- name: Number of roofs
sequence: string
- name: Number of rooms
sequence: string
- name: Number of roosters
dtype: 'null'
- name: Number of roses
dtype: 'null'
- name: Number of rubies
dtype: 'null'
- name: Number of rulers
dtype: 'null'
- name: Number of salt shakers
sequence: string
- name: Number of sandwiches
dtype: 'null'
- name: Number of scarves
dtype: 'null'
- name: Number of schools
dtype: 'null'
- name: Number of science articles
sequence: string
- name: Number of scooters sold
dtype: 'null'
- name: Number of screwdrivers
sequence: string
- name: Number of seagulls
sequence: string
- name: Number of sheep
sequence: string
- name: Number of sheets
sequence: string
- name: Number of sheets of paper
sequence: string
- name: Number of shells
sequence: string
- name: Number of shelves
sequence: string
- name: Number of shirts
dtype: 'null'
- name: Number of shoeboxes
dtype: 'null'
- name: Number of shopping bags
sequence: string
- name: Number of shops
dtype: 'null'
- name: Number of shovels
dtype: 'null'
- name: Number of siblings
dtype: 'null'
- name: Number of silver buttons
dtype: 'null'
- name: Number of slices sold
sequence: string
- name: Number of smoothies
sequence: string
- name: Number of snails
sequence: string
- name: Number of soccer fields
sequence: string
- name: Number of sparrows
dtype: 'null'
- name: Number of spelling words
sequence: string
- name: Number of spiders
dtype: 'null'
- name: Number of sprinklers
dtype: 'null'
- name: Number of stacks
dtype: 'null'
- name: Number of stamps
dtype: 'null'
- name: Number of starfish
dtype: 'null'
- name: Number of states
sequence: string
- name: Number of steps
dtype: 'null'
- name: Number of stickers
sequence: string
- name: Number of stools
dtype: 'null'
- name: Number of stop signs
sequence: string
- name: Number of stores
sequence: string
- name: Number of strawberries
dtype: 'null'
- name: Number of strings
dtype: 'null'
- name: Number of students
sequence: string
- name: Number of stuffed animals
sequence: string
- name: Number of sugar cookies
dtype: 'null'
- name: Number of sunflowers
dtype: 'null'
- name: Number of sweaters
dtype: 'null'
- name: Number of sweatshirts
sequence: string
- name: Number of swings
sequence: string
- name: Number of tables
sequence: string
- name: Number of tadpoles
dtype: 'null'
- name: Number of tanks
dtype: 'null'
- name: Number of tape measures
sequence: string
- name: Number of telephones
dtype: 'null'
- name: Number of tennis balls
sequence: string
- name: Number of tickets
sequence: string
- name: Number of times
sequence: string
- name: Number of tins
dtype: 'null'
- name: Number of tires
dtype: 'null'
- name: Number of tomatoes
dtype: 'null'
- name: Number of tool boxes
sequence: string
- name: Number of tool sheds
dtype: 'null'
- name: Number of towns
dtype: 'null'
- name: Number of toy bins
dtype: 'null'
- name: Number of toy cars
sequence: string
- name: Number of toy trucks
dtype: 'null'
- name: Number of tractors
sequence: string
- name: Number of train cars
dtype: 'null'
- name: Number of trains
dtype: 'null'
- name: Number of trays
dtype: 'null'
- name: Number of trees
dtype: 'null'
- name: Number of trees planted
sequence: string
- name: Number of trips
sequence: string
- name: Number of trucks
dtype: 'null'
- name: Number of turtleneck sweaters
sequence: string
- name: Number of twigs
sequence: string
- name: Number of umbrellas
dtype: 'null'
- name: Number of vans
sequence: string
- name: Number of vases
dtype: 'null'
- name: Number of vegetables eaten
dtype: 'null'
- name: Number of vehicles
sequence: string
- name: Number of visitors
dtype: 'null'
- name: Number of visits
dtype: 'null'
- name: Number of volleyballs
dtype: 'null'
- name: Number of votes
dtype: 'null'
- name: Number of walnut cookies
dtype: 'null'
- name: Number of walnuts
dtype: 'null'
- name: Number of watermelons
dtype: 'null'
- name: Number of wheelbarrows
dtype: 'null'
- name: Number of windows
dtype: 'null'
- name: Number of winter hats
sequence: string
- name: Number of words
dtype: 'null'
- name: Number of words spelled correctly
dtype: 'null'
- name: Number of years
sequence: string
- name: Number of yellow blocks
dtype: 'null'
- name: Number of yellow buttons
dtype: 'null'
- name: Number of yellow fish
dtype: 'null'
- name: Number of yellow notepads
dtype: 'null'
- name: Number of yogurt pops
sequence: string
- name: Number spun
sequence: string
- name: Oak trees
dtype: 'null'
- name: October
dtype: 'null'
- name: One prize
sequence: string
- name: Onion bagels
dtype: 'null'
- name: Only in the beard competition
dtype: 'null'
- name: Option
sequence: string
- name: Orchestra conductor
dtype: 'null'
- name: Organic
dtype: 'null'
- name: Organization
sequence: string
- name: Origin
dtype: 'null'
- name: Panda bears
dtype: 'null'
- name: Paperback books
dtype: 'null'
- name: Parents
sequence: string
- name: Park
sequence: string
- name: Partner
dtype: 'null'
- name: Pay period
sequence: string
- name: Peaches
dtype: 'null'
- name: Pediment Bank
dtype: 'null'
- name: Pepperoni pizzas
dtype: 'null'
- name: Per-student budget
sequence: string
- name: Performer
dtype: 'null'
- name: Person
sequence: string
- name: Pet
sequence: string
- name: Photographs taken
sequence: string
- name: Picture frames made
sequence: string
- name: Pictures painted
dtype: 'null'
- name: Pieces of fruit
sequence: string
- name: Pine cones found
dtype: 'null'
- name: Plain bagels
dtype: 'null'
- name: Player
sequence: string
- name: Pleased
sequence: string
- name: Poems written
sequence: string
- name: Poetry
sequence: string
- name: Points scored
sequence: string
- name: Polar bears
dtype: 'null'
- name: Polarized lenses
dtype: 'null'
- name: Police officer
dtype: 'null'
- name: Popsicle flavor
dtype: 'null'
- name: Population
sequence: string
- name: Price
sequence: string
- name: Prize
sequence: string
- name: Purple
sequence: string
- name: Puzzle
dtype: 'null'
- name: Quantity demanded
sequence: string
- name: Quantity supplied
sequence: string
- name: Radio announcer
dtype: 'null'
- name: Rainforest
dtype: 'null'
- name: Raking the ground
dtype: 'null'
- name: Rank
sequence: string
- name: Read minds
sequence: string
- name: Received
sequence: string
- name: Record time (minutes)
sequence: string
- name: Rectangle
dtype: 'null'
- name: Red
dtype: 'null'
- name: Red beard
dtype: 'null'
- name: Red car
dtype: 'null'
- name: Red hair
sequence: string
- name: Red squirrels
dtype: 'null'
- name: Redland Bank
dtype: 'null'
- name: Regular cleaning
dtype: 'null'
- name: Regular lenses
dtype: 'null'
- name: Regular size
dtype: 'null'
- name: Requests
sequence: string
- name: Responsible
dtype: 'null'
- name: Restaurant
sequence: string
- name: Restaurants
sequence: string
- name: Rings bought
sequence: string
- name: Road bike tires
sequence: string
- name: Roast beef sandwiches
dtype: 'null'
- name: Rock
dtype: 'null'
- name: Roses
dtype: 'null'
- name: Rounds
sequence: string
- name: Runner
sequence: string
- name: Runs scored
dtype: 'null'
- name: SUVs
dtype: 'null'
- name: Salmon
sequence: string
- name: Sandwich
sequence: string
- name: Saturday
sequence: string
- name: School
sequence: string
- name: Scoops served
dtype: 'null'
- name: Score
sequence: string
- name: Seashells found
sequence: string
- name: Season
sequence: string
- name: Seeds planted
sequence: string
- name: Senior
dtype: 'null'
- name: September
dtype: 'null'
- name: Sheep
dtype: 'null'
- name: Shirt
dtype: 'null'
- name: Shop
sequence: string
- name: Shrink
sequence: string
- name: Silver status
dtype: 'null'
- name: Small
dtype: 'null'
- name: Snakes
dtype: 'null'
- name: Snowfall (inches)
sequence: string
- name: Social worker
dtype: 'null'
- name: Spinach
sequence: string
- name: Split pea
dtype: 'null'
- name: Sport
sequence: string
- name: Spruce wood
sequence: string
- name: Star-shaped straw
dtype: 'null'
- name: State
sequence: string
- name: Stay the same
sequence: string
- name: Stem
sequence: string
- name: Stories written
sequence: string
- name: Stratocumulus
dtype: 'null'
- name: Stratus
dtype: 'null'
- name: Strawberry jelly
dtype: 'null'
- name: Street
sequence: string
- name: Student council
sequence: string
- name: Students
sequence: string
- name: Subject
sequence: string
- name: Suede
dtype: 'null'
- name: Sun bears
dtype: 'null'
- name: Sunday
sequence: string
- name: Supreme pizzas
sequence: string
- name: Swans
sequence: string
- name: Swirls
dtype: 'null'
- name: Tapping the ground
dtype: 'null'
- name: Teacher
sequence: string
- name: Teachers
dtype: 'null'
- name: Team
sequence: string
- name: Temperature (°C)
sequence: string
- name: Temperature (°F)
sequence: string
- name: Temperature (°C)
sequence: string
- name: Tennis matches won
dtype: 'null'
- name: Tennis shoes
dtype: 'null'
- name: Thank-you notes written
dtype: 'null'
- name: Thursday
sequence: string
- name: Time
sequence: string
- name: Time (minutes)
sequence: string
- name: Times eaten
sequence: string
- name: Times played
sequence: string
- name: Touchdowns scored
dtype: 'null'
- name: Town
sequence: string
- name: Treat
sequence: string
- name: Truck
sequence: string
- name: Trucks
dtype: 'null'
- name: Tuesday
sequence: string
- name: Tulips
dtype: 'null'
- name: Tuna sandwiches
dtype: 'null'
- name: Turkey sandwiches
dtype: 'null'
- name: Turtles
dtype: 'null'
- name: Two prizes
sequence: string
- name: Type
sequence: string
- name: Type of Wood
dtype: 'null'
- name: Type of pizza
dtype: 'null'
- name: Uncertain
sequence: string
- name: Upper elementary students
sequence: string
- name: Vacation days
sequence: string
- name: Vanilla
dtype: 'null'
- name: Vegetable
dtype: 'null'
- name: Vegetarian pizzas
sequence: string
- name: Vegetarian sandwiches
sequence: string
- name: Velvet
dtype: 'null'
- name: Vertically
dtype: 'null'
- name: Voicemail messages
sequence: string
- name: Votes
sequence: string
- name: Vultures
dtype: 'null'
- name: Waiting time (minutes)
sequence: string
- name: Watch
dtype: 'null'
- name: Wednesday
sequence: string
- name: Weight (kg)
sequence: string
- name: Weight change (oz.)
dtype: 'null'
- name: Whales spotted
sequence: string
- name: Wind speed (miles per hour)
dtype: 'null'
- name: Winning time (minutes)
sequence: string
- name: Working lights
dtype: 'null'
- name: Year
sequence: string
- name: Yellow
dtype: 'null'
- name: Yellowtail
sequence: string
- name: Zigzags
dtype: 'null'
- name: Zoo
sequence: string
- name: x
sequence: string
- name: y
sequence: string
- name: row_num
dtype: int64
- name: column_num
dtype: int64
- name: solution
dtype: string
- name: ques_type
dtype: string
- name: ans_type
dtype: string
- name: grade
dtype: int64
- name: split
dtype: string
- name: idx
dtype: int64
splits:
- name: test
num_bytes: 2275262
num_examples: 1000
download_size: 660877
dataset_size: 2275262
configs:
- config_name: default
data_files:
- split: test
path: data/test-*
---
|