{"id":272,"date":"2026-06-22T06:37:42","date_gmt":"2026-06-22T06:37:42","guid":{"rendered":"http:\/\/tutor-lms-demo.com\/courses\/data-science-foundations\/lessons\/introduction-to-pandas\/"},"modified":"2026-06-22T06:37:42","modified_gmt":"2026-06-22T06:37:42","slug":"introduction-to-pandas","status":"publish","type":"lesson","link":"https:\/\/website.uia.ac.cr\/en\/courses\/data-science-foundations\/lessons\/introduction-to-pandas\/","title":{"rendered":"Introduction to Pandas"},"content":{"rendered":"<p>Pandas is the most widely used Python library for data analysis. It introduces two key objects:<\/p>\n<h3>Series<\/h3>\n<p>A single column of data.<\/p>\n<h3>DataFrame<\/h3>\n<p>A table of rows and columns.<\/p>\n<p>Example:<\/p>\n<pre><code>import pandas as pd\n\ndata = {\n    \"Name\": [\"Alice\", \"Bob\"],\n    \"Age\": [25, 30]\n}\n\ndf = pd.DataFrame(data)<\/code><\/pre>\n<p>DataFrames allow analysts to:<\/p>\n<ul>\n<li>Filter data<\/li>\n<li>Sort values<\/li>\n<li>Perform calculations<\/li>\n<li>Identify trends<\/li>\n<\/ul>\n<p>Pandas forms the backbone of most data science workflows.<\/p>\n","protected":false},"comment_status":"open","ping_status":"closed","template":"","class_list":["post-272","lesson","type-lesson","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Introduction to Pandas - Website UIA<\/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:\/\/website.uia.ac.cr\/en\/courses\/data-science-foundations\/lessons\/introduction-to-pandas\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Introduction to Pandas - Website UIA\" \/>\n<meta property=\"og:description\" content=\"Pandas is the most widely used Python library for data analysis. It introduces two key objects: Series A single column of data. DataFrame A table of rows and columns. Example: import pandas as pd data = { &quot;Name&quot;: [&quot;Alice&quot;, &quot;Bob&quot;], &quot;Age&quot;: [25, 30] } df = pd.DataFrame(data) DataFrames allow analysts to: Filter data Sort values [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/website.uia.ac.cr\/en\/courses\/data-science-foundations\/lessons\/introduction-to-pandas\/\" \/>\n<meta property=\"og:site_name\" content=\"Website UIA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/website.uia.ac.cr\\\/courses\\\/data-science-foundations\\\/lessons\\\/introduction-to-pandas\\\/\",\"url\":\"https:\\\/\\\/website.uia.ac.cr\\\/courses\\\/data-science-foundations\\\/lessons\\\/introduction-to-pandas\\\/\",\"name\":\"Introduction to Pandas - Website UIA\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/website.uia.ac.cr\\\/#website\"},\"datePublished\":\"2026-06-22T06:37:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/website.uia.ac.cr\\\/courses\\\/data-science-foundations\\\/lessons\\\/introduction-to-pandas\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/website.uia.ac.cr\\\/courses\\\/data-science-foundations\\\/lessons\\\/introduction-to-pandas\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/website.uia.ac.cr\\\/courses\\\/data-science-foundations\\\/lessons\\\/introduction-to-pandas\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Inicio\",\"item\":\"https:\\\/\\\/website.uia.ac.cr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Lecciones\",\"item\":\"https:\\\/\\\/website.uia.ac.cr\\\/lesson\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Introduction to Pandas\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/website.uia.ac.cr\\\/#website\",\"url\":\"https:\\\/\\\/website.uia.ac.cr\\\/\",\"name\":\"Website UIA\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/website.uia.ac.cr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/website.uia.ac.cr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/website.uia.ac.cr\\\/#organization\",\"name\":\"Website UIA\",\"url\":\"https:\\\/\\\/website.uia.ac.cr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/website.uia.ac.cr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/website.uia.ac.cr\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/uia-logotipo600x400.png\",\"contentUrl\":\"https:\\\/\\\/website.uia.ac.cr\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/uia-logotipo600x400.png\",\"width\":602,\"height\":411,\"caption\":\"Website UIA\"},\"image\":{\"@id\":\"https:\\\/\\\/website.uia.ac.cr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Introduction to Pandas - Website UIA","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:\/\/website.uia.ac.cr\/en\/courses\/data-science-foundations\/lessons\/introduction-to-pandas\/","og_locale":"en_US","og_type":"article","og_title":"Introduction to Pandas - Website UIA","og_description":"Pandas is the most widely used Python library for data analysis. It introduces two key objects: Series A single column of data. DataFrame A table of rows and columns. Example: import pandas as pd data = { \"Name\": [\"Alice\", \"Bob\"], \"Age\": [25, 30] } df = pd.DataFrame(data) DataFrames allow analysts to: Filter data Sort values [&hellip;]","og_url":"https:\/\/website.uia.ac.cr\/en\/courses\/data-science-foundations\/lessons\/introduction-to-pandas\/","og_site_name":"Website UIA","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/website.uia.ac.cr\/courses\/data-science-foundations\/lessons\/introduction-to-pandas\/","url":"https:\/\/website.uia.ac.cr\/courses\/data-science-foundations\/lessons\/introduction-to-pandas\/","name":"Introduction to Pandas - Website UIA","isPartOf":{"@id":"https:\/\/website.uia.ac.cr\/#website"},"datePublished":"2026-06-22T06:37:42+00:00","breadcrumb":{"@id":"https:\/\/website.uia.ac.cr\/courses\/data-science-foundations\/lessons\/introduction-to-pandas\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/website.uia.ac.cr\/courses\/data-science-foundations\/lessons\/introduction-to-pandas\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/website.uia.ac.cr\/courses\/data-science-foundations\/lessons\/introduction-to-pandas\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Inicio","item":"https:\/\/website.uia.ac.cr\/"},{"@type":"ListItem","position":2,"name":"Lecciones","item":"https:\/\/website.uia.ac.cr\/lesson\/"},{"@type":"ListItem","position":3,"name":"Introduction to Pandas"}]},{"@type":"WebSite","@id":"https:\/\/website.uia.ac.cr\/#website","url":"https:\/\/website.uia.ac.cr\/","name":"Website UIA","description":"","publisher":{"@id":"https:\/\/website.uia.ac.cr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/website.uia.ac.cr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/website.uia.ac.cr\/#organization","name":"Website UIA","url":"https:\/\/website.uia.ac.cr\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/website.uia.ac.cr\/#\/schema\/logo\/image\/","url":"https:\/\/website.uia.ac.cr\/wp-content\/uploads\/2026\/07\/uia-logotipo600x400.png","contentUrl":"https:\/\/website.uia.ac.cr\/wp-content\/uploads\/2026\/07\/uia-logotipo600x400.png","width":602,"height":411,"caption":"Website UIA"},"image":{"@id":"https:\/\/website.uia.ac.cr\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/website.uia.ac.cr\/en\/wp-json\/wp\/v2\/lesson\/272","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/website.uia.ac.cr\/en\/wp-json\/wp\/v2\/lesson"}],"about":[{"href":"https:\/\/website.uia.ac.cr\/en\/wp-json\/wp\/v2\/types\/lesson"}],"replies":[{"embeddable":true,"href":"https:\/\/website.uia.ac.cr\/en\/wp-json\/wp\/v2\/comments?post=272"}],"version-history":[{"count":0,"href":"https:\/\/website.uia.ac.cr\/en\/wp-json\/wp\/v2\/lesson\/272\/revisions"}],"wp:attachment":[{"href":"https:\/\/website.uia.ac.cr\/en\/wp-json\/wp\/v2\/media?parent=272"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}