{"id":46647,"date":"2021-05-28T00:00:00","date_gmt":"2021-05-28T07:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/graphical-analysis-of-nobel-prize-laureates\/"},"modified":"2025-11-13T12:55:22","modified_gmt":"2025-11-13T20:55:22","slug":"graphical-analysis-of-nobel-prize-laureates","status":"publish","type":"post","link":"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/","title":{"rendered":"Graphical Analysis of Nobel Prize Laureates"},"content":{"rendered":"<h1>Introduction<\/h1>\n<p>The Nobel Prize is perhaps the world&#8217;s most well-known and prestigious award. Professionals and activists from all over the world dream to become Nobel prize holders and share the prestige among the renowned advocates of their respective fields. Considering the significance and prestige of this award, business leaders and data analysts are excited to jump into the field and carry out exploratory and predictive analyses to find out the trend among the Nobel prize winners over the course of time.<\/p>\n<p>Since these analyses that researchers and analysts are excited about are related to time-series activities, GridDB becomes the ideal choice for executing them as it is designed and optimized to deal with such time-series complexities.<\/p>\n<p>The seamless integration of GridDB with Python offers a competitive advantage by leveraging the de facto leaders of the data science programming languages. In this article, we will use the power of GridDB &#8211; a highly scalable, in-memory NoSQL time-series database optimized for IoT and big data.<\/p>\n<p>Without further ado, we will now take you through the step-by-step tutorial to get started with GridDB through a simple project aimed at visually analyzing the data available from The Nobel Foundation which includes the demographic data of all prize winners from the start of the prize, in 1901, to 2016. Let&#8217;s load it in and take a look.<\/p>\n<h2>Setting Up GridDB on Ubuntu<\/h2>\n<p>Before moving into the actual project and its implementation, make sure you have GridDB up and running on your system. For setting up GridDB on Ubuntu or CentOS, please refer to our detailed <a href=\"https:\/\/griddb.net\/en\/blog\/griddb-quickstart\/\">quick start guide for GridDB<\/a>.<\/p>\n<h2>Dataset<\/h2>\n<p>For the purpose of this project, we will use the <a href=\"https:\/\/www.kaggle.com\/nobelfoundation\/nobel-laureates\">Nobel Laureates dataset<\/a> publicly available on Kaggle.<\/p>\n<h2>Load File in DataFrame<\/h2>\n<p>To carry out exploratory and predictive analyses, Python offers an exceptional library, Pandas, that is specifically designed, implemented, and optimized to carry out data related complex tasks. Pandas have different modules that enable analysts and scientists to smoothly carry out the end-to-end process including the extraction of data from a CSV file.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\n# Read CSV file\nnobelprize_data = pd.read_CSV(\"nobel.CSV\")\n<\/code><\/pre>\n<\/div>\n<p>In the above code snippet, we read from a CSV file and create Pandas data frames for further managing, transforming, and preprocessing the data.<\/p>\n<h2>Data Preprocessing<\/h2>\n<p>The data that we stored in Pandas data frame in the previous section will now be used for preprocessing. We will filter out data points relevant to our use-case, clean the data, and store the processed data into a new CSV file so that we do not end up running the preprocessing script again and again.<\/p>\n<p>The CSV includes a number of columns that are not significant for our analysis and it would be better to have fewer columns to get a better insight into the data at this beginner stage.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\n# Drop irrelevant columns\nnobelprize_data = nobelprize_data.drop(labels = \n    [\"Motivation\",\"Full Name\", \"Birth Date\",\n    \"Birth City\" , \"Birth Country\",\n    \"Death Date\", \"Death City\" , \"Death Country\" ,\n    \"Organization City\", \"Organization Country\",\n    \"Organization Name\"], axis = 1)\n<\/code><\/pre>\n<\/div>\n<p>So, after removing few columns, we will have the following remaining columns:<\/p>\n<ul>\n<li>Year<\/li>\n<li>Category<\/li>\n<li>Prize (The title of the prize given to them)<\/li>\n<li>Prize Share (Date at which the prize was announced)<\/li>\n<li>Laureate ID (ID given by Nobel prize database)<\/li>\n<li>Laureate Type (If the Nobel prize was given to a group of people or individual person)<\/li>\n<li>Sex<\/li>\n<\/ul>\n<p>Furthermore, it is also important to note that the columns are identified as non-null and in order to maintain the column, we need to make some changes in the \u00e2\u20ac\u02dcSex\u00e2\u20ac\u2122 column where the null represents \u00e2\u20ac\u02dcNot disclosed\u00e2\u20ac\u2122<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\nnobelprize_data['Sex'] = nobelprize_data['Sex'].fillna(\"Not disclosed\")\n<\/code><\/pre>\n<\/div>\n<p>Additionally, we will also introduce a column of ID to refer to it as the primary key for our database.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\n# Add auto incremental ID\nnobelprize_data.index.name = 'ID'\n<\/code><\/pre>\n<\/div>\n<p>Now we rename the column names to make them more comprehensive:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\n# Rename columns\nfixColNames = nobelprize_data.rename(columns = \n    {\"Year\": \"year\",\n    \"Category\":\"category\",\n    \"Prize\": \"prize\",\n    \"Prize Share\":\"prize_share\",\n    \"Laureate ID\":\"laureate_id\",\n    \"Laureate Type\":\"laureate_type\",\n    \"Sex\":\"sex\"})\n<\/code><\/pre>\n<\/div>\n<p>After saving the processed data into the new CSV file, we will use the same procedure of loading the data from the CSV file into the Pandas data frame again.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\n# Generate a new processed file\nfixColNames.to_CSV(\"preprocessed.CSV\")\n<\/code><\/pre>\n<\/div>\n<p>Once the data is loaded into the Pandas data frame, we are all set to insert it into GridDB to perform optimized analysis operations on the data.<\/p>\n<h2>Insert Data in GridDB<\/h2>\n<p>The standard approach set by GridDB to insert data is to create a container and use the put methods. We will combine this approach with Panda\u00e2\u20ac\u2122s data insertion method in data frame.<\/p>\n<p>First, we will instantiate a container, nobelprize_1901, in GridDB and define the data types. Please ensure that the data types are correct or you will likely run into validation errors while conducting analysis.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\n# Create Collection circuits\nnobelprize_containerInfo = GridDB.ContainerInfo(nobelprize_container,\n    [[\"ID\", GridDB.Type.INTEGER],\n    [\"year\", GridDB.Type.INTEGER],\n    [\"category\", GridDB.Type.STRING],\n    [\"prize\", GridDB.Type.STRING],\n    [\"prize_share\", GridDB.Type.STRING],\n    [\"laureate_id\", GridDB.Type.INTEGER],\n    [\"laureate_type\", GridDB.Type.STRING],\n    [\"sex\", GridDB.Type.STRING]],\n    GridDB.ContainerType.COLLECTION, True)\nnobelprize_columns = gridstore.put_container(nobelprize_containerInfo)\n<\/code><\/pre>\n<\/div>\n<p>Now that a container is set up, we need to import our records into this container. The GridDB\u00e2\u20ac\u2122s <code>put_rows<\/code> method allows us to import from data frames:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\n# Put rows\nnobelprize_columns.put_rows(nobelprize_data)\n<\/code><\/pre>\n<\/div>\n<p>The data and structure from the CSV are now successfully imported into the nobelprize_1901 and adapted to the GridDB structured format.<\/p>\n<h2>Access Data from GridDB<\/h2>\n<p>Now that the data is imported into the GridDB container, we need to retrieve it. GridDB has its own query language, TQL, which can be learnt about from this source. TQL is used to query data from the GridDB container and uses commands similar to the standard SQL protocol.<br \/>\nIn this section, let\u00e2\u20ac\u2122s see how to retrieve data from the Database. GridDB provides the query functionality which enables users to query the containers to retrieve data from the Database. Have a look at the following code block. There, we have retrieved the container using the <code>get_container<\/code> function and then querying the collection to extract the required data.<br \/>\nHere is a simple example of TQL we have used to retrieve the container using the <code>get_container<\/code> function and then extract the data using the query. In this particular case, we have used \u00e2\u20ac\u0153 <code>select *<\/code> \u00e2\u20ac\u009d to select all records from the container.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\n# Fetch all rows - circuits_container\nquery = nobelprize_data.query(\"select *\")\n<\/code><\/pre>\n<\/div>\n<p>For the scope and simplicity of this article, we have written a simple query to select all records. However, diving in further, you may explore using different commands to filter data along the lines of order, limits and conditions. Feel free to explore the syntax from the official GridDB sources mentioned earlier.<\/p>\n<p>After fetching the data from the GridDB container, we need to import it back into the Pandas\u00e2\u20ac\u2122 data frame for analysis. We achieve this using <code>pd.DataFrame()<\/code> method to convert the GridDB container lists to the data frame.<\/p>\n<p>We now have a data frame fetched from the GridDB database.<\/p>\n<h2>Analysis in GridDB<\/h2>\n<p>Now that we have the dataset loaded into the GridDB container, it\u00e2\u20ac\u2122s time to get onto the analysis. We will first import the required libraries: <code>numpy<\/code>, <code>matplotlib<\/code>, and <code>pandas<\/code>.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\nimport numpy as np\nimport GridDB_python as GridDB\nimport sys\nimport pandas as pd\nimport matplotlib.pyplot as plt\n<\/code><\/pre>\n<\/div>\n<p>We will now look into the Sex column of every Nobel Prize winner and generate a bar graph to contemplate the Sex: Nobel Prize ratio.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\n# Analysis on Gender\ngender_wise = nobelprize_dataframe['sex'].value_counts()\n \ngenderplot = gender_wise.plot(kind='bar')\ngenderplot.figure.tight_layout()\ngenderplot.figure.savefig('gender_wise.png')\n<\/code><\/pre>\n<\/div>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/05\/analysis_1.png\"><img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/05\/analysis_1.png\" alt=\"\" width=\"468\" height=\"314\" class=\"aligncenter size-full wp-image-27489\" srcset=\"\/wp-content\/uploads\/2021\/05\/analysis_1.png 468w, \/wp-content\/uploads\/2021\/05\/analysis_1-300x201.png 300w\" sizes=\"(max-width: 468px) 100vw, 468px\" \/><\/a><\/p>\n<p>As is obvious, the Nobel Prize has been a male-dominated award. Reasons for this could be numerous, such as the lack of women empowerment in the early half of the 20th century. It could also be the case that there was a bias towards recognizing male talent as compared to females. In 2018, Donna Strickland was only the third woman to receive a Nobel prize in physics.<\/p>\n<p>According to traditional stereotypes, women try to avoid STEM fields because they \u00e2\u20ac\u02dcdon\u00e2\u20ac\u2122t like maths\u00e2\u20ac\u2122 or \u00e2\u20ac\u02dcare not good at science\u00e2\u20ac\u2122. This is an ongoing issue to date, but for the past few decades, many efforts are made to overcome this view.<\/p>\n<p>We notice that scientific fields have received the most recognition, amongst which Medicine and Physics stand out the most. It may be due to the fact that non-scientific fields in the 20th century were given less recognition or the Nobel Prizes for some fields either did not exist or were added later. A particular case is that of Computer Science which is not eligible for the Nobel Prize to date &#8211; they instead have another award called the Turing Award. If the aim of the analysis is to compare the recognition and popularity of disciplines, including the Turing Award would offer another meaningful insight (not covered in this article).<\/p>\n<p>If we further analyse our data using both the previous categories into one graph.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\n# Analysis on Category\ncategory_wise = nobelprize_dataframe['category'].value_counts()\n \nnobelprize_dataframe.groupby(['category','sex']).size().unstack().plot(kind='bar',stacked=True)\nplt.tight_layout()\nplt.savefig('Category+Gender.png', orientation = 'landscape')\nplt.show()\n<\/code><\/pre>\n<\/div>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/05\/analysis_2.png\"><img decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/05\/analysis_2.png\" alt=\"\" width=\"436\" height=\"290\" class=\"aligncenter size-full wp-image-27488\" srcset=\"\/wp-content\/uploads\/2021\/05\/analysis_2.png 436w, \/wp-content\/uploads\/2021\/05\/analysis_2-300x200.png 300w\" sizes=\"(max-width: 436px) 100vw, 436px\" \/><\/a><\/p>\n<p>We can see that the only STEM field women recognition is somewhat notable is Medicine, while the overall most female Nobel prize winners contributed to the field of peace.<\/p>\n<p>Another aspect that we can get some insight from is to analyse the awards given to each category over different time periods and how it has evolved over the years.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-py\">\n# Time series analysis on Year Group\nnobelprize_dataframe[\"Year_Group\"] = pd.cut(nobelprize_dataframe[\"year\"],[1900,1910,1920,1930,1940,1950,1960,1970,1980,1990,2000,2010,2016], precision=0, labels=['1900-1910','1910-1920','1920-1930','1930-1940','1940-1950','1950-1960','1960-1970','1970-1980','1980-1990','1990-2000','2000-2010','2010-2016'])   \n \nnobelprize_dataframe.groupby(['Year_Group','category']).size().unstack().plot(kind='bar',stacked=True)\nplt.tight_layout()\nplt.savefig('Change_over_years.png')\nplt.show()\n<\/code><\/pre>\n<\/div>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/05\/analysis_3.png\"><img decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/05\/analysis_3.png\" alt=\"\" width=\"468\" height=\"312\" class=\"aligncenter size-full wp-image-27490\" srcset=\"\/wp-content\/uploads\/2021\/05\/analysis_3.png 468w, \/wp-content\/uploads\/2021\/05\/analysis_3-300x200.png 300w\" sizes=\"(max-width: 468px) 100vw, 468px\" \/><\/a><\/p>\n<p>We can see in the graph below that there are some fields whose contribution remained constant over the past 120 years i.e Peace and Literature. While looking at the STEM areas of medicine and physics, we can clearly conclude that the Nobel prize contribution has increased significantly over the years. The most insight from the graphs is that the branch of Economics was invisible in the early 1900s but significant growth in the Nobel prizes awarded in Economics can be seen after 1970.<\/p>\n<p>That\u00e2\u20ac\u2122s it. We have learnt to load, insert, retrieve and analyze data using GridDB and Python.<\/p>\n<h2>Conclusion<\/h2>\n<p>In this article, we have created a simple project to get you started with GridDB. We have learnt how to pre-process and load a CSV file, insert and obtain data from GridDB containers and analyze data using matplotlib, pandas and numpy. We have also learnt the basics of querying data from GridDB and importing it into a dataframe.<br \/>\nThis is just the beginning. Feel free to experiment more with TQL filters and GridDB containers to enrich your learning experience. Happy coding!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction The Nobel Prize is perhaps the world&#8217;s most well-known and prestigious award. Professionals and activists from all over the world dream to become Nobel prize holders and share the prestige among the renowned advocates of their respective fields. Considering the significance and prestige of this award, business leaders and data analysts are excited to [&hellip;]<\/p>\n","protected":false},"author":41,"featured_media":27505,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-46647","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Graphical Analysis of Nobel Prize Laureates | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"Introduction The Nobel Prize is perhaps the world&#039;s most well-known and prestigious award. Professionals and activists from all over the world dream to\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Graphical Analysis of Nobel Prize Laureates | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"Introduction The Nobel Prize is perhaps the world&#039;s most well-known and prestigious award. Professionals and activists from all over the world dream to\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/\" \/>\n<meta property=\"og:site_name\" content=\"GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/griddbcommunity\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-05-28T07:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-13T20:55:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/05\/art_2560x1674.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1674\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"griddb-admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:site\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"griddb-admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/\"},\"author\":{\"name\":\"griddb-admin\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/4fe914ca9576878e82f5e8dd3ba52233\"},\"headline\":\"Graphical Analysis of Nobel Prize Laureates\",\"datePublished\":\"2021-05-28T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:55:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/\"},\"wordCount\":1538,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2021\/05\/art_2560x1674.jpeg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/\",\"url\":\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/\",\"name\":\"Graphical Analysis of Nobel Prize Laureates | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2021\/05\/art_2560x1674.jpeg\",\"datePublished\":\"2021-05-28T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:55:22+00:00\",\"description\":\"Introduction The Nobel Prize is perhaps the world's most well-known and prestigious award. Professionals and activists from all over the world dream to\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2021\/05\/art_2560x1674.jpeg\",\"contentUrl\":\"\/wp-content\/uploads\/2021\/05\/art_2560x1674.jpeg\",\"width\":2560,\"height\":1674},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website\",\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/\",\"name\":\"GridDB: Open Source Time Series Database for IoT\",\"description\":\"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL\",\"publisher\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization\",\"name\":\"Fixstars\",\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"contentUrl\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"width\":200,\"height\":83,\"caption\":\"Fixstars\"},\"image\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/griddbcommunity\/\",\"https:\/\/x.com\/GridDBCommunity\",\"https:\/\/www.linkedin.com\/company\/griddb-by-toshiba\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/4fe914ca9576878e82f5e8dd3ba52233\",\"name\":\"griddb-admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5bceca1cafc06886a7ba873e2f0a28011a1176c4dea59709f735b63ae30d0342?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5bceca1cafc06886a7ba873e2f0a28011a1176c4dea59709f735b63ae30d0342?s=96&d=mm&r=g\",\"caption\":\"griddb-admin\"},\"url\":\"https:\/\/griddb.net\/en\/author\/griddb-admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Graphical Analysis of Nobel Prize Laureates | GridDB: Open Source Time Series Database for IoT","description":"Introduction The Nobel Prize is perhaps the world's most well-known and prestigious award. Professionals and activists from all over the world dream to","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:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/","og_locale":"en_US","og_type":"article","og_title":"Graphical Analysis of Nobel Prize Laureates | GridDB: Open Source Time Series Database for IoT","og_description":"Introduction The Nobel Prize is perhaps the world's most well-known and prestigious award. Professionals and activists from all over the world dream to","og_url":"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2021-05-28T07:00:00+00:00","article_modified_time":"2025-11-13T20:55:22+00:00","og_image":[{"width":2560,"height":1674,"url":"https:\/\/griddb.net\/wp-content\/uploads\/2021\/05\/art_2560x1674.jpeg","type":"image\/jpeg"}],"author":"griddb-admin","twitter_card":"summary_large_image","twitter_creator":"@GridDBCommunity","twitter_site":"@GridDBCommunity","twitter_misc":{"Written by":"griddb-admin","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/#article","isPartOf":{"@id":"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/"},"author":{"name":"griddb-admin","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/4fe914ca9576878e82f5e8dd3ba52233"},"headline":"Graphical Analysis of Nobel Prize Laureates","datePublished":"2021-05-28T07:00:00+00:00","dateModified":"2025-11-13T20:55:22+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/"},"wordCount":1538,"commentCount":0,"publisher":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2021\/05\/art_2560x1674.jpeg","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/","url":"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/","name":"Graphical Analysis of Nobel Prize Laureates | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/#primaryimage"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2021\/05\/art_2560x1674.jpeg","datePublished":"2021-05-28T07:00:00+00:00","dateModified":"2025-11-13T20:55:22+00:00","description":"Introduction The Nobel Prize is perhaps the world's most well-known and prestigious award. Professionals and activists from all over the world dream to","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/blog\/graphical-analysis-of-nobel-prize-laureates\/#primaryimage","url":"\/wp-content\/uploads\/2021\/05\/art_2560x1674.jpeg","contentUrl":"\/wp-content\/uploads\/2021\/05\/art_2560x1674.jpeg","width":2560,"height":1674},{"@type":"WebSite","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website","url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/","name":"GridDB: Open Source Time Series Database for IoT","description":"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL","publisher":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization","name":"Fixstars","url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/logo\/image\/","url":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","contentUrl":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","width":200,"height":83,"caption":"Fixstars"},"image":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/griddbcommunity\/","https:\/\/x.com\/GridDBCommunity","https:\/\/www.linkedin.com\/company\/griddb-by-toshiba"]},{"@type":"Person","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/4fe914ca9576878e82f5e8dd3ba52233","name":"griddb-admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/5bceca1cafc06886a7ba873e2f0a28011a1176c4dea59709f735b63ae30d0342?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5bceca1cafc06886a7ba873e2f0a28011a1176c4dea59709f735b63ae30d0342?s=96&d=mm&r=g","caption":"griddb-admin"},"url":"https:\/\/griddb.net\/en\/author\/griddb-admin\/"}]}},"_links":{"self":[{"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/posts\/46647","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/users\/41"}],"replies":[{"embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/comments?post=46647"}],"version-history":[{"count":1,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/posts\/46647\/revisions"}],"predecessor-version":[{"id":51322,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/posts\/46647\/revisions\/51322"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/media\/27505"}],"wp:attachment":[{"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/media?parent=46647"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/categories?post=46647"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/tags?post=46647"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}