Decoding G20 Summit 2023: What a MATLAB WordCloud Reveals

Decoding G20 Summit 2023: What a MATLAB WordCloud Reveals

The G20 India Summit 2023 in New Delhi has been the talk of the town, especially with India playing the host and PM Narendra Modi at the helm. Amidst geopolitical complexities and the absence of key leaders like Xi Jinping and Vladimir Putin, the summit was a crucial platform for India. But what were the core themes that emerged from this global event?

To dig deeper, I used MATLAB to create a WordCloud of the Leaders' Declaration. The code focused on significant terms, filtering out words and numbers up to 4 characters and converting the text to lowercase.

clc
clear
close all

%% WordCloud for New Delhi G20 Declaration
% Gunjan Gupta, MATLAB Helper
% https://matlabhelper.com

filename = 'G20 Declaration'; % Copied from https://www.livemint.com/news/india/g20-summit-full-text-of-new-delhi-g20-leaders-declaration-read-here-11694259472398.html and saved as a txt file!

vision = string(fileread([filename '.txt']));
punctuationCharacters = ["." "?" "!" "," ";" ":"];
vision = replace(vision,punctuationCharacters," ");
words = split(join(vision));
words(strlength(words)<5) = [];
words = lower(words);
C = categorical(words);
figure; 
wc = wordcloud(C);
title(sprintf("Word Cloud for %s",filename));
filename = [filename '.jpg'];
saveas(gcf,filename);
WordTable = [wc.WordData(1:10); wc.SizeData(1:10)]';
disp(WordTable)        
WordCloud of the Leaders' Declaration

The WordCloud revealed intriguing insights. The most frequent terms were "global," "support," and "development." These terms offer a glimpse into what world leaders are prioritizing. Do these terms align with what you expected from the summit?

In conclusion, the G20 Summit has set new agendas on a global scale, and this MATLAB-generated WordCloud provides a unique lens to view these priorities. What are your thoughts on the summit's outcomes? Do you think the event met its objectives?

I invite you to share your insights. What do you think the WordCloud reveals about the G20 Summit? Any surprises or expected trends? Let's get the conversation started.

#G20Summit2023 #MATLAB #DataVisualization #GlobalLeaders #NewDelhi


HRMantra Software

#1 HRMS & HCM Platform | End-to-End HR & Payroll Solutions | Global Workforce Automation | 23+ Years of Excellence

1 年

"Join us on our journey to G20 membership! ?? Our 'Heaven on Earth' video reflects our dedication to a harmonious world. Watch and be inspired! ? #G20Dreamers #HeavenOnEarth" https://hrmantra.com/demo/heavenonearth

回复

要查看或添加评论,请登录

Gunjan Gupta的更多文章

  • How do Small Saving Schemes compare to Inflation?

    How do Small Saving Schemes compare to Inflation?

    On March 31, 2022, Govt of India announced the Interest Rate for various Small Saving Schemes like PPF, NSC, SCSS…

  • Analyze Tax Saving Investment under 80C with MATLAB

    Analyze Tax Saving Investment under 80C with MATLAB

    Hey. This is the time of the year when all Tax Payers who have not done anything during the entire year start thinking…

  • Evaluate Cryptocurrency Craze in MATLAB

    Evaluate Cryptocurrency Craze in MATLAB

    Hi. Last week, I created a poll inquiring about the next live interactive session topic.

    2 条评论
  • Bollywood Movie Mania in MATLAB

    Bollywood Movie Mania in MATLAB

    Hello LinkedIn Friends & Followers. It’s been a long period since my last post, and I am sorry for the delay.

  • Equation Instruction Rotation Simulation & Population

    Equation Instruction Rotation Simulation & Population

    Hi Reader! Give a big shout to yourself for subscribing to GG's Journal. I hope you have read my previous two articles:…

  • From #shorts to long work, Kanban is the way to go!

    From #shorts to long work, Kanban is the way to go!

    Hi Reader! Thanks for giving your valuable time to come and read this new article under GG's Journal. I am thrilled to…

  • How to make #shorts with MATLAB?

    How to make #shorts with MATLAB?

    Hi folks! Thank you for reading my article, and I hope you join my newsletter: GG's Journal. This is my second article…

  • Life is a Hackathon. How to solve it?

    Life is a Hackathon. How to solve it?

    Greetings Everyone! Wishing you a Happy New Year! Is it too late to wish now? Maybe, but doing it seems better than…

    2 条评论
  • 5 - Webinar Series @ MATLAB Helper

    5 - Webinar Series @ MATLAB Helper

    Hello friend. For the last few weeks, we have been conducting several webinars as well as the live interactive sessions…

    5 条评论
  • Arduino with MATLAB - Webinar #3

    Arduino with MATLAB - Webinar #3

    After Conducting two successful webinars on Arduino, MATLAB Helper in association with Airavath Foundation is…

社区洞察

其他会员也浏览了