{"id":30213,"date":"2023-01-14T05:11:51","date_gmt":"2023-01-13T23:41:51","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/"},"modified":"2023-01-14T05:11:51","modified_gmt":"2023-01-13T23:41:51","slug":"solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/","title":{"rendered":"[Solved] Scraped CSV pandas dataframe I get: ValueError(&#8216;Length of values does not match length of &#8216; &#8216;index&#8217;)"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-47669506\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"47669506\" data-parentid=\"47666070\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>You need <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/pandas.pydata.org\/pandas-docs\/stable\/generated\/pandas.merge.html\"><code>merge<\/code><\/a> with <code>inner join<\/code>:<\/p>\n<pre><code>print('####CURRIES###')\ndf1 = pd.read_csv('C:\\\\O\\\\df1.csv',\n                   index_col=False,\n                   usecols=[0,1,2],\n                   names=[\"EW\", \"WE\", \"DA\"],\n                   header=None)\nprint(df1.head())\n####CURRIES###\n                                 EW    WE  \\\n0                         can v can  1.90   \n1    Lanus U20 v Argentinos Jrs U20  2.10   \n2      Botafogo RJ U20 v Toluca U20  1.83   \n3  Atletico Mineiro U20 v Bahia U20  2.10   \n4                 FC Porto v Monaco  1.36   \n\n                                                  DA  \n0  https:\/\/www.bet365.com.au\/#\/AC\/B1\/C1\/D13\/E40\/F...  \n1  https:\/\/www.bet365.com.au\/#\/AC\/B1\/C1\/D13\/E40\/F...  \n2  https:\/\/www.bet365.com.au\/#\/AC\/B1\/C1\/D13\/E40\/F...  \n3  https:\/\/www.bet365.com.au\/#\/AC\/B1\/C1\/D13\/E40\/F...  \n4  https:\/\/www.bet365.com.au\/#\/AC\/B1\/C1\/D13\/E40\/F...  \n\nprint('####Mangoes###')\ndf2 = pd.read_csv('C:\\\\O\\\\df2.csv',\n                   index_col=False,\n                   usecols=[0,1,2, 3, 4],\n                   names=[\"AA\", \"AB\", \"AC\", \"AD\", \"AE\"],\n                   header=None)\n<\/code><\/pre>\n<hr>\n<pre><code>print(df2.head())\n####Mangoes###\n            AA                     AB                      AC      AD  \\\n0  Today 19:00          Indonesia U23          Kyrgyzstan U23  650.00   \n1  Today 23:00  Brunei Darussalam U23            Mongolia U23    3.30   \n2  Today 19:30                    can                     can  110.00   \n3  Today 20:00  FC Zbrojovka Brno U19       Sparta Prague U19    1.97   \n4  Today 20:30         Rahmatgonj MFS  Sheikh Jamal Dhanmondi    1.51   \n\n                                                  AE  \n0  https:\/\/www.betfair.com.au\/exchange\/plus\/footb...  \n1  https:\/\/www.betfair.com.au\/exchange\/plus\/footb...  \n2  https:\/\/www.betfair.com.au\/exchange\/plus\/footb...  \n3  https:\/\/www.betfair.com.au\/exchange\/plus\/footb...  \n4  https:\/\/www.betfair.com.au\/exchange\/plus\/footb...  \n<\/code><\/pre>\n<hr>\n<pre><code>#crewte new column called EW in df2\ndf2['EW'] = df2['AB'] + ' v ' + df2['AC']   \n#merge on columns EW  \ndf3 = pd.merge(df2, df1, on='EW')\n#change columns names\ndf3 = df3.rename(columns={'WE':'O1','AD':'O2'})\n#subtract O columns\ndf3['D'] = df3['O2'].sub(df3['O1'], fill_value=0)\nprint (df3)\n            AA             AB              AC     O2  \\\n0  Today 19:00  Indonesia U23  Kyrgyzstan U23  650.0   \n1  Today 19:30            can             can  110.0   \n\n                                                  AE  \\\n0  https:\/\/www.betfair.com.au\/exchange\/plus\/footb...   \n1  https:\/\/www.betfair.com.au\/exchange\/plus\/footb...   \n\n                               EW   O1  \\\n0  Indonesia U23 v Kyrgyzstan U23  2.0   \n1                       can v can  1.9   \n\n                                                  DA      D  \n0  https:\/\/www.bet365.com.au\/#\/AC\/B1\/C1\/D13\/E40\/F...  648.0  \n1  https:\/\/www.bet365.com.au\/#\/AC\/B1\/C1\/D13\/E40\/F...  108.1  \n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Scraped CSV pandas dataframe I get: ValueError(&#8216;Length of values does not match length of &#8216; &#8216;index&#8217;) <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] You need merge with inner join: print(&#8216;####CURRIES###&#8217;) df1 = pd.read_csv(&#8216;C:\\\\O\\\\df1.csv&#8217;, index_col=False, usecols=[0,1,2], names=[&#8220;EW&#8221;, &#8220;WE&#8221;, &#8220;DA&#8221;], header=None) print(df1.head()) ####CURRIES### EW WE \\ 0 can v can 1.90 1 Lanus U20 v Argentinos Jrs U20 2.10 2 Botafogo RJ U20 v Toluca U20 1.83 3 Atletico Mineiro U20 v Bahia U20 2.10 4 FC Porto v &#8230; <a title=\"[Solved] Scraped CSV pandas dataframe I get: ValueError(&#8216;Length of values does not match length of &#8216; &#8216;index&#8217;)\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/\" aria-label=\"More on [Solved] Scraped CSV pandas dataframe I get: ValueError(&#8216;Length of values does not match length of &#8216; &#8216;index&#8217;)\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[415,349,482,611,760],"class_list":["post-30213","post","type-post","status-publish","format-standard","hentry","category-solved","tag-pandas","tag-python","tag-python-3-x","tag-selenium","tag-web-scraping"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Scraped CSV pandas dataframe I get: ValueError(&#039;Length of values does not match length of &#039; &#039;index&#039;) - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Scraped CSV pandas dataframe I get: ValueError(&#039;Length of values does not match length of &#039; &#039;index&#039;) - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] You need merge with inner join: print(&#039;####CURRIES###&#039;) df1 = pd.read_csv(&#039;C:\\O\\df1.csv&#039;, index_col=False, usecols=[0,1,2], names=[&quot;EW&quot;, &quot;WE&quot;, &quot;DA&quot;], header=None) print(df1.head()) ####CURRIES### EW WE  0 can v can 1.90 1 Lanus U20 v Argentinos Jrs U20 2.10 2 Botafogo RJ U20 v Toluca U20 1.83 3 Atletico Mineiro U20 v Bahia U20 2.10 4 FC Porto v ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-13T23:41:51+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Scraped CSV pandas dataframe I get: ValueError(&#8216;Length of values does not match length of &#8216; &#8216;index&#8217;)\",\"datePublished\":\"2023-01-13T23:41:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/\"},\"wordCount\":39,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"pandas\",\"python\",\"python-3.x\",\"selenium\",\"web-scraping\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/\",\"name\":\"[Solved] Scraped CSV pandas dataframe I get: ValueError('Length of values does not match length of ' 'index') - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2023-01-13T23:41:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Scraped CSV pandas dataframe I get: ValueError(&#8216;Length of values does not match length of &#8216; &#8216;index&#8217;)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Scraped CSV pandas dataframe I get: ValueError('Length of values does not match length of ' 'index') - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Scraped CSV pandas dataframe I get: ValueError('Length of values does not match length of ' 'index') - JassWeb","og_description":"[ad_1] You need merge with inner join: print('####CURRIES###') df1 = pd.read_csv('C:\\O\\df1.csv', index_col=False, usecols=[0,1,2], names=[\"EW\", \"WE\", \"DA\"], header=None) print(df1.head()) ####CURRIES### EW WE  0 can v can 1.90 1 Lanus U20 v Argentinos Jrs U20 2.10 2 Botafogo RJ U20 v Toluca U20 1.83 3 Atletico Mineiro U20 v Bahia U20 2.10 4 FC Porto v ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/","og_site_name":"JassWeb","article_published_time":"2023-01-13T23:41:51+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Scraped CSV pandas dataframe I get: ValueError(&#8216;Length of values does not match length of &#8216; &#8216;index&#8217;)","datePublished":"2023-01-13T23:41:51+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/"},"wordCount":39,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["pandas","python","python-3.x","selenium","web-scraping"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/","url":"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/","name":"[Solved] Scraped CSV pandas dataframe I get: ValueError('Length of values does not match length of ' 'index') - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2023-01-13T23:41:51+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-scraped-csv-pandas-dataframe-i-get-valueerrorlength-of-values-does-not-match-length-of-index\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Scraped CSV pandas dataframe I get: ValueError(&#8216;Length of values does not match length of &#8216; &#8216;index&#8217;)"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/30213","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=30213"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/30213\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=30213"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=30213"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=30213"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}