<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by Jayant Kumar Kodwani on Medium]]></title>
        <description><![CDATA[Stories by Jayant Kumar Kodwani on Medium]]></description>
        <link>https://medium.com/@jayant.kodwani?source=rss-23796786d508------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/1*xCUafNz3ZM31EAJdD-boGg.jpeg</url>
            <title>Stories by Jayant Kumar Kodwani on Medium</title>
            <link>https://medium.com/@jayant.kodwani?source=rss-23796786d508------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Wed, 20 May 2026 12:53:38 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@jayant.kodwani/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[Checkmate the OCR Challenge: Image to Text Extraction]]></title>
            <link>https://medium.com/geekculture/checkmate-the-ocr-challenge-image-to-text-extraction-d0f947abfbbc?source=rss-23796786d508------2</link>
            <guid isPermaLink="false">https://medium.com/p/d0f947abfbbc</guid>
            <category><![CDATA[python]]></category>
            <category><![CDATA[computer-vision]]></category>
            <category><![CDATA[azure]]></category>
            <category><![CDATA[microsoft]]></category>
            <category><![CDATA[ocr]]></category>
            <dc:creator><![CDATA[Jayant Kumar Kodwani]]></dc:creator>
            <pubDate>Mon, 31 May 2021 05:32:46 GMT</pubDate>
            <atom:updated>2021-05-31T05:32:46.216Z</atom:updated>
            <content:encoded><![CDATA[<h4><a href="https://towardsai.net/p/category/computer-vision">Computer Vision</a></h4><h3>Extract text from images in 3 simple steps</h3><p>Unleash the power of Microsoft Azure Computer vision using Python</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*EIRjrkneJntb5XqA" /><figcaption>Checkmate the OCR challenge : Image to Text Extraction using Python &amp; Azure, (Photo by <a href="https://unsplash.com/@grstocks?utm_source=medium&amp;utm_medium=referral">GR Stocks</a> on <a href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral">Unsplash</a>)</figcaption></figure><p>OCR optical character recognition or to say in layman terms extracting text from images has been one of the most remarkable features available today. Gone are the days when organizations employed thousands of people just to type the text from images! Today, it is a job of a few people who can process thousands of images in just few minutes. Extracting text from images has helped organizations to massively improve customer service, increase storage spaces and secure the sensitive data in a compliant manner.</p><h4>What will we Discuss?</h4><p>We would learn how to extract text from images using the power of Microsoft Azure computer vision cognitive services.</p><ol><li>We would use a sample image stored in Azure container Blob storage (<a href="https://jayantml1356189034.blob.core.windows.net/jayantcontainer/0001.jpg">https://jayantml1356189034.blob.core.windows.net/jayantcontainer/0001.jpg</a>)</li><li>Process the given image to extract 100+ words.</li><li>Store the extracted result in a local MS Excel file.</li></ol><h3>Resources Required</h3><ul><li>Python instance (i.e. Spyder IDE)</li><li>Microsoft Azure Subscription (to run computer vision cognitive services and storage service to store images in Blob)</li></ul><h3>Step 1: Create Azure Computer Vision</h3><p>1.1 Login to the Azure Portal: <a href="https://portal.azure.com/#home">https://portal.azure.com/#home</a>, search for “ <strong>Computer Vision </strong>”</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*Lqmj7T6U6yDcVyKt-0S4Mg.jpeg" /><figcaption>Search for “Computer Vision” on Azure Portal</figcaption></figure><p>1.2 Create computer vision service by selecting subscription, creating a resource group (just a container to bind the resources), location and <a href="https://azure.microsoft.com/en-us/pricing/details/cognitive-services/computer-vision/#pricing">pricing tier.</a> A free web container allows <strong><em>5,000 transactions free per month</em></strong>. After clicking “<strong>Review + Create”</strong> , Azure may take a couple of minutes to create the resource.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/908/1*nKiTCTtd-Wt5GFz4a86NeA.jpeg" /><figcaption>Create Computer Vision service</figcaption></figure><p>1.3 Once the computer vision service has been created, navigate to <strong>“Keys and Endpoint”</strong> and copy the keys and endpoint details probably in a notepad.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1010/1*S_wWDPbmrHMSLA3iMwdgiA.jpeg" /><figcaption>Keys and Endpoint for Computer vision service</figcaption></figure><blockquote><em>⚠️ Please keep a note that keys and endpoint should not be disclosed to unauthorized people as they may impact your azure consumption cost. Regenerate keys if you have accidently disclosed the same.</em></blockquote><p>Now, you are done with the Azure Portal portion now and can navigate to Python (Spyder IDE).</p><h3>Step 2: Install AZURE packages</h3><p><strong>Installation: </strong>Open Python instance (i.e. Spyder 🐍 ) and issue below commands to install the required azure packages.</p><pre>pip install — upgrade azure-cognitiveservices-vision-computervision<br>pip install pillow<br>pip install azure-storage-blob</pre><h3>Step 3: Python code magic</h3><p>Use the below script and replace (a) Subscription key (b) Endpoint and Execute! You can try executing the script with other images by replacing the field <strong>‘remote_image_handw_text_url’. </strong>The script has been updated with self-explanatory comments. Feel free to ask any further questions in the comments section.</p><iframe src="" width="0" height="0" frameborder="0" scrolling="no"><a href="https://medium.com/media/5230159f0a286e88aa7b82246f591eec/href">https://medium.com/media/5230159f0a286e88aa7b82246f591eec/href</a></iframe><p>This is how your output looks like. You can download the <a href="https://github.com/jayantkodwani/Image-to-Text-Extraction-Microsoft-Azure-Computer-Vision-Python/blob/main/Words.xlsx">Excel here.</a></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/801/1*o2JPLBhxbZa7dELKQoBX9g.jpeg" /><figcaption>Exported MS Excel Workbook</figcaption></figure><h3>Conclusion</h3><p>We learned 📘 how to extract text from image and get the output in MS Excel for further analysis.. You could use other images and customize the code to see what suits your use case best! 👍</p><p>Have questions?? Please drop it in the comments !</p><h3>References</h3><p>[1] <a href="https://docs.microsoft.com/en-in/azure/cognitive-services/computer-vision/quickstarts-sdk/client-library?tabs=visual-studio&amp;pivots=programming-language-python">https://docs.microsoft.com/en-in/azure/cognitive-services/computer-vision/quickstarts-sdk/client-library?tabs=visual-studio&amp;pivots=programming-language-python</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=d0f947abfbbc" width="1" height="1" alt=""><hr><p><a href="https://medium.com/geekculture/checkmate-the-ocr-challenge-image-to-text-extraction-d0f947abfbbc">Checkmate the OCR Challenge: Image to Text Extraction</a> was originally published in <a href="https://medium.com/geekculture">Geek Culture</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Key Phrase Extraction and Visualization : Python and Power BI]]></title>
            <link>https://pub.towardsai.net/key-phrase-extraction-and-visualization-python-and-power-bi-4b459c7fa426?source=rss-23796786d508------2</link>
            <guid isPermaLink="false">https://medium.com/p/4b459c7fa426</guid>
            <category><![CDATA[python]]></category>
            <category><![CDATA[power-bi]]></category>
            <category><![CDATA[machine-learning]]></category>
            <category><![CDATA[visualization]]></category>
            <category><![CDATA[text-analytics]]></category>
            <dc:creator><![CDATA[Jayant Kumar Kodwani]]></dc:creator>
            <pubDate>Sat, 06 Mar 2021 13:02:40 GMT</pubDate>
            <atom:updated>2021-03-19T21:48:54.750Z</atom:updated>
            <content:encoded><![CDATA[<h4><a href="https://towardsai.net/p/category/nlp">Natural Language Processing</a></h4><h3>Key Phrase Extraction and Visualization: Python and Microsoft Power BI</h3><h3>Discover insights in unstructured text</h3><p>Implementing RAKE algorithm in Python and Power BI integration</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*dwmEi-oV2oNUBFvd" /><figcaption>Key-Phrase Extraction, Photo by <a href="https://unsplash.com/@rbmadaci?utm_source=medium&amp;utm_medium=referral">Rabie Madaci</a> on <a href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral">Unsplash</a></figcaption></figure><p>We live in an age where data is the new currency! This makes the Big tech giants the richest companies in the world. The best investment for the next few decades will be the investment in data. So, what do these companies do with this data? How can anyone handle pieces of textual and unstructured data from Facebook posts, Twitter or Linkedin? To a layman, scanning or sampling might sound like a good idea, however, data scientists know the risks of sampling and the pain of scanning text by text, row by row, and word by word 😬. This is where data experts use <strong><em>“Key-phrase Extraction”.</em></strong></p><blockquote><strong><em>Key-phrase Extraction </em></strong>is the skill<strong> </strong>to evaluate unstructured text and returning a list of key phrases. For example, given input text “The food was delicious and there were wonderful staff”, the service returns the main talking points: “food” and “wonderful staff”.</blockquote><h3>What will we Discuss?</h3><p>In this story, we will extract key-phrases using RAKE algorithm in Python on a sample set of data and then and visualize in Microsoft Power BI.</p><p>Here is the link for the sample data that we will use: <a href="https://github.com/jayantkodwani/AI-Text-Analytics/blob/main/Sentiment%20Analysis%20using%20Azure%20Text%20Analytics%20%26%20Power%20BI/Sample%20Data%20for%20Sentiment%20Analysis.xlsx"><strong>Sample Data</strong></a></p><h3>What is RAKE?</h3><p>RAKE is short for Rapid Automatic Keyword Extraction algorithm, it is a domain-independent keyword extraction algorithm that tries to determine key phrases in a body of text by analyzing the frequency of word appearance and its co-occurrence with other words in the text.</p><h3>Resources Required</h3><ul><li>Python instance (i.e. Spyder)</li><li>Microsoft Power BI Desktop (Pro License)</li><li>(OPTIONAL) Microsoft Azure Subscription (Free Trial or Paid) to correlate key-phrases together with sentiments.</li></ul><h3>Are you ready?? Here we go 🏄</h3><h3>Step 1: Install RAKE package and store stop wordlist</h3><p><strong>1.1 Installation: </strong>Open Python instance (i.e. Spyder 🐍 ) and issue below command to install the rake package.</p><pre>!pip install python-rake==1.4.4</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*n2SyJR0aa7rebTvcNsrQsQ.jpeg" /><figcaption>Installing RAKE algorithm package in Spyder Python instance</figcaption></figure><p><strong>1.2 Create stop wordlist: </strong>Stop words are the words that generally do not help in text analysis and are typically dropped within all the informational systems and also not included in various text analyses as they are considered to be meaningless. Words that are considered to carry a<strong><em> </em></strong>meaning related to the text are described as the <strong>content bearing</strong> and are called <strong>content words</strong>. You can download the <a href="https://github.com/jayantkodwani/AI-Text-Analytics/blob/main/Key%20Phrase%20Extraction%20and%20Visualization/StopWords.txt"><strong>stopwords list</strong></a> here and customize the same as per your requirements. Save it at the desired location and copy the path for configuring the Python script.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/664/1*2E1ljMNqMVAwkoHbyjAwqg.jpeg" /><figcaption>Example of stopwords</figcaption></figure><h3>Step 2: Open Power BI, Import Data &amp; Configure Python script</h3><p><strong>2.1 Power BI Data Import:</strong> Open a new instance of Power BI desktop&gt;&gt; Import Data from Excel (<a href="https://github.com/jayantkodwani/Text-Analytics/blob/main/Sentiment%20Analysis%20using%20Azure%20Text%20Analytics%20%26%20Power%20BI/Sample%20Data%20for%20Sentiment%20Analysis.xlsx"><strong>Sample Data</strong></a><strong>) </strong>&gt;&gt;Browse the sample data file &gt;&gt; Import data &gt;&gt; Calling “Run Python script” in Power Query Editor (Under Transform)</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*qtktPoORavxNrwQ476uVZQ.jpeg" /><figcaption>Calling “Run Python script” in Power Query Editor</figcaption></figure><p><strong>2.2 Prepare your Python Script: </strong>You can use the below Python script and customize the same by replacing the path for stopwords list in <strong>row 11</strong>.</p><p>Also, you can specify/restrict the # of key-phrases to be extracted by modifying the count in <strong>row 31</strong> (i.e. <em>replace [-1:] to [-5:] to get up to 5 key-phrases from 1 text input)</em></p><iframe src="" width="0" height="0" frameborder="0" scrolling="no"><a href="https://medium.com/media/e494935653379821616b3ed2ad76d8a6/href">https://medium.com/media/e494935653379821616b3ed2ad76d8a6/href</a></iframe><p>Once done with the customization, you can apply the script and expand the <strong>“Rake_Final_Output”</strong> dataset. You can <strong>Save and Close </strong>the Power Query Editor to apply the script. This is how your dataset looks like after new fields added for key-phrases and their scores.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*UmBRH9XYNrPtJRw-6JoV1Q.jpeg" /><figcaption>Power BI Dataset with Key-phrases and Scores</figcaption></figure><h3>Step 3: Power BI Integration and Visualization</h3><p>Now comes the fun part that we all love, the visualizations! 💝</p><p>In order to visualize the key-phrases, I would recommend to use a Word Cloud ☁️ together with tables preferably with <a href="https://towardsdatascience.com/analyzing-and-visualizing-sentiments-from-unstructured-raw-data-c263ba96cc2c">sentiment analysis</a> 😃, so you can relate the key-phrases with <em>positive, neutral and negative sentiments.</em></p><p>You can <a href="https://github.com/jayantkodwani/AI-Text-Analytics/blob/main/Key%20Phrase%20Extraction%20and%20Visualization/Sentiment%20Analytics%20%2B%20Key-phrase%20Extraction%20Azure%20%2B%20Python%20%2B%20Power%20BI%20Integration%20DEMO.pbix">download a sample Power BI template</a> which integrates Sentiment analysis as well as key-phrase extraction all packed together in a Power BI.</p><p>As you can see in the below example, we have “<em>Top 10 Key phrases with negative sentiments”</em> where phrases like “<strong>Slower Connections</strong>” and “<strong>restart 10 times” </strong>are directly correlated to negative sentiments 😢</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/875/1*F34TJOnUK91u5xJ_KnCH0w.jpeg" /><figcaption>Word cloud with correlation of Negative Sentiments</figcaption></figure><p>Similarly, we have “<em>Top 10 Key phrases with positive sentiments</em>” where phrases like <strong>“explained neatly”</strong> and <strong>“great in depth knowledge”</strong> are directly correlated to positive sentiments 😃.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1008/1*tzQwj4mGQ-b8aSgzWMQzBg.jpeg" /><figcaption>Word Cloud with correlation of Positive Sentiments</figcaption></figure><h3>Conclusion</h3><p>We learned 📘 how to apply RAKE algorithm to extract key-phrases and integrate the analysis in Microsoft Power BI to develop visualizations.</p><p>You could use other datasets and customize the code to see what suits your use case best! 👍</p><p>Came across a different approach for key-phrase extraction? Please drop it in the comments !</p><h3>References</h3><p>[1] <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/tutorials/tutorial-power-bi-key-phrases">https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/tutorials/tutorial-power-bi-key-phrases</a></p><p>[2] <a href="https://towardsdatascience.com/analyzing-and-visualizing-sentiments-from-unstructured-raw-data-c263ba96cc2c">https://towardsdatascience.com/analyzing-and-visualizing-sentiments-from-unstructured-raw-data-c263ba96cc2c</a></p><p>[3] Data source: prepared manually by the Author</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=4b459c7fa426" width="1" height="1" alt=""><hr><p><a href="https://pub.towardsai.net/key-phrase-extraction-and-visualization-python-and-power-bi-4b459c7fa426">Key Phrase Extraction and Visualization : Python and Power BI</a> was originally published in <a href="https://pub.towardsai.net">Towards AI</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[New Agile Hybrid Project Pro Micro-Credential from PMI : Coming soon in April 2021]]></title>
            <link>https://medium.com/@jayant.kodwani/new-agile-hybrid-project-pro-micro-credential-from-pmi-coming-soon-in-april-2021-35dad3686039?source=rss-23796786d508------2</link>
            <guid isPermaLink="false">https://medium.com/p/35dad3686039</guid>
            <category><![CDATA[learning]]></category>
            <category><![CDATA[credentials]]></category>
            <category><![CDATA[agile]]></category>
            <category><![CDATA[agile-methodology]]></category>
            <category><![CDATA[project-management]]></category>
            <dc:creator><![CDATA[Jayant Kumar Kodwani]]></dc:creator>
            <pubDate>Wed, 03 Mar 2021 01:38:10 GMT</pubDate>
            <atom:updated>2021-03-03T01:38:10.522Z</atom:updated>
            <content:encoded><![CDATA[<h3>All about PMI Agile Hybrid Project Pro Micro-Credential</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/276/1*iJVM8klJ0qX2sfNdy2Zadg.png" /><figcaption>New Agile Hybrid Project Pro Micro-Credential</figcaption></figure><h3><strong>PMI AH-MC Micro-Credential</strong></h3><h4>Hybrid is the new normal</h4><p>Here is your chance to learn and realign to the latest project management standards. Did you know that the new PMP (Project management professional) includes agile and hybrid methodologies? 📚</p><p>I think being among the first in the world 🌎 to obtain the <strong>Micro-Credential: Agile Hybrid Project Pro (AH-MC)</strong> during Beta release from the <a href="https://www.pmi.org/">Project Management Institute</a>, I have another great opportunity to share my knowledge and experience.</p><h3>So What is PMI Agile Hybrid Project Pro?</h3><p>According to the PMI, this new credential demonstrates knowledge of agile and hybrid project management concepts, tasks and techniques that are applicable in virtually any industry. You can find more information about the micro-credential at the following link: <a href="https://www.pmi.org/landing/agile-hybrid-micro-credential">https://www.pmi.org/landing/agile-hybrid-micro-credential</a></p><blockquote><em>Agile Hybrid Project Pro is a micro-credential product that includes an eLearning course and an assessment. It assesses Agile &amp; Hybrid project management knowledge &amp; skills through a short, focused examination. The eLearning course will help you in preparing for the assessment.</em></blockquote><p>The credential will be soft launched in <strong>Apr 2021.</strong>😃</p><blockquote><strong><em>You may love the fact that this micro credential badge never expires! </em></strong>but for me it was venturing into the hybrid methodology trying to corelate how agile and waterfall can work together.</blockquote><h3>Who is eligible?</h3><ol><li>It is ideal for traditional project managers who are beginning to venture into the Agile or Hybrid space.</li></ol><p>2. It helps current Project Management Professional (PMP)® certification holders align to the new PMP® standards, which includes Agile and Hybrid methodology. Further, you get <strong>13 PDU’s</strong> to help you to renew your certification.</p><h3>Exam Format</h3><p>You have <strong>75</strong> minutes to answer <strong>60</strong> questions.</p><h3>So we take the eLearning course, take assessment and earn the credential. Is it correct?</h3><p>To be honest, I think that the e-learning course is not sufficient. Remember, to pass any PMI certification/credential, you should have aligned your thinking with the methodologies and concepts which in this case is Agile as well as Hybrid.</p><p><em>This is very tricky with this new credential as you fall into the trap of confusion between traditional waterfall and agile approach. For example, in a hybrid environment, in terms of artifacts what will be useful in a given scenario? </em><strong><em>A</em></strong><em> </em><strong><em>risk register or </em>Sprint Backlog?</strong> Similarly, Who will do xyz activity?<strong> <em>Project manager or Team?</em></strong></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*PDS2oESWGns5aBkN" /><figcaption>Photo by <a href="https://unsplash.com/@mparzuchowski?utm_source=medium&amp;utm_medium=referral">Michał Parzuchowski</a> on <a href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral">Unsplash</a></figcaption></figure><h3>Ok, this seems to be very difficult?</h3><p>Well, the answer is <strong>No</strong>. If you understand the context then you will be able to fit into the scenario in a hybrid environment and pick the correct option.</p><p>I am sharing few sure shot tips that can help:</p><ol><li>Read the first 4–5 words very carefully to understand the project setting. i.e. During an agile project VS During a project.</li><li>Understand that in agile environment, project manager is comparable to Scrum master and acts as a servant leader and Servant leaders facilitate.</li><li>Go through <strong>PMBOK and Agile practice guide.</strong></li><li><strong>Remember the taxonomy:</strong> <strong>predictive=Waterfall= Traditional, whereas Agile=iterative=sprints</strong></li><li>Remember that as per Agile Practice guide, ideally the transition from waterfall to hybrid should be <strong>gradual</strong>. This would require learning and alignment between teams.</li><li>Understand the conflict resolution techniques i.e. Collaborating, Avoiding</li><li>Daily stand ups are important.</li><li>Read and understand everything in the official <a href="https://www.scrumguides.org/scrum-guide.html"><strong>Scrum Guide</strong></a></li><li>Product owner takes scoping decisions.</li><li>Don’t forget to take a breathe during the exam. Oxygen is vital for the functioning of our brain. ☺️</li></ol><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*E4vDTxq_-ks5a0jn" /><figcaption>Photo by <a href="https://unsplash.com/@sarti46?utm_source=medium&amp;utm_medium=referral">Massimo Sartirana</a> on <a href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral">Unsplash</a></figcaption></figure><h3>Conclusion</h3><p>Last but not the least, Believe in yourself and don’t be afraid of the outcomes.</p><blockquote><em>I would like to quote one of my inspirations A. P. J. Abdul Kalam (Teacher as he liked to be called instead of Indian aerospace scientist and former president of India) that </em><strong><em>Fail stands for “First Attempt in Learning</em></strong><em>”</em></blockquote><p>The beautiful thing about <strong>learning</strong> is that nobody can take it away from you.</p><p>Still have questions in your mind?? Feel free to drop a message below.</p><h3>References</h3><p>[1] <a href="https://www.pmi.org/landing/agile-hybrid-micro-credential">https://www.pmi.org/landing/agile-hybrid-micro-credential</a></p><p>[2] <a href="https://www.pmi.org/">https://www.pmi.org/</a></p><p>[3] “PMI,” the PMI logo, “PMP,” “Project Management Institute” and “Pulse of the Profession” are registered marks of Project Management Institute, Inc.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=35dad3686039" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Analyzing and Visualizing Sentiments from unstructured raw data]]></title>
            <link>https://medium.com/data-science/analyzing-and-visualizing-sentiments-from-unstructured-raw-data-c263ba96cc2c?source=rss-23796786d508------2</link>
            <guid isPermaLink="false">https://medium.com/p/c263ba96cc2c</guid>
            <category><![CDATA[microsoft]]></category>
            <category><![CDATA[azure]]></category>
            <category><![CDATA[sentiment-analytics]]></category>
            <category><![CDATA[text-analytics]]></category>
            <category><![CDATA[power-bi]]></category>
            <dc:creator><![CDATA[Jayant Kumar Kodwani]]></dc:creator>
            <pubDate>Mon, 22 Feb 2021 13:36:50 GMT</pubDate>
            <atom:updated>2021-03-19T21:52:19.837Z</atom:updated>
            <content:encoded><![CDATA[<h3>Analyzing and Visualizing Sentiments from Unstructured data</h3><h4>Using Microsoft Azure Text Analytics and Power BI Integration</h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*73x44dlqdqWZDtJq" /><figcaption>Photo by <a href="https://unsplash.com/@masonjones?utm_source=medium&amp;utm_medium=referral">Mason Jones</a> on <a href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral">Unsplash</a></figcaption></figure><h4>The Sentiment Analysis</h4><p>Microsoft Azure Cognitive services and Power BI Integration</p><p>The total amount of <strong>data</strong> created, captured, copied, and consumed in the world is forecasted to <strong>increase</strong> rapidly, reaching <strong>74</strong> zettabytes in 2021 (Source: Statista). Imagine how much of this 74 zettabytes data will be unstructured and untamed, leaving a huge void 💣in how data scientists around the world would analyze, model and consume this mammoth amount of data. For example, product reviews on ecommerce websites like Amazon or free speech on social media giants like Facebook and Twitter.</p><p>One of the key challenges with such with unstructured data is how to gauge public opinion, conduct nuanced market research, monitor brand and product reputation, and understand customer experiences. In layman terms, how to understand and classify emotions or for data scientists how to perform a sentiment analysis. <strong>A Sentiment Analysis is the process of determining whether a piece of writing is positive, negative or neutral.</strong></p><h3>What will we Discuss?</h3><p>In this story, we will perform sentiment analysis on a sample set of data and use :</p><ol><li>Microsoft Azure Text Analytics (For performing sentiment analysis)</li><li>Power BI (For integration and Visualization)</li></ol><p>Here is the link for the sample data that we will use: <a href="https://github.com/jayantkodwani/AI-Text-Analytics/blob/main/Sentiment%20Analysis%20using%20Azure%20Text%20Analytics%20%26%20Power%20BI/Sample%20Data%20for%20Sentiment%20Analysis.xlsx"><strong>Sample Data</strong></a>.</p><h3><strong>Resources Required</strong></h3><ul><li>Microsoft Azure Subscription (Free Trial or Paid)</li><li>Microsoft Power BI Desktop (Pro License)</li></ul><h4>Are you ready?? Here we go 🏄</h4><h3><strong>Step 1: Azure Text Analytics</strong></h3><p>Login to the Azure Portal: <a href="https://portal.azure.com/#home">https://portal.azure.com/#home</a>, search for “ <strong>Text Analytics </strong>”</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*FhIiqoi7i_-MYPnvHAcqNA.png" /><figcaption>Azure Portal Home Screen Search bar</figcaption></figure><p>Create a Text Analytics service by selecting subscription, creating a resource group (just a container to bind the resources), location and <a href="https://azure.microsoft.com/en-us/pricing/details/cognitive-services/text-analytics/">pricing tier</a>. A free web container allows <strong><em>5,000 transactions free per month</em></strong>. After clicking “<strong>Review + Create”</strong> , Azure may take a couple of minutes to create the resource.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/823/1*Vf3wOnMyIAkEiGdcmqeUGA.png" /><figcaption>Creating a Text Analytics Service</figcaption></figure><p>Once the text analytics resource has been created, navigate to <strong>“Keys and Endpoint”</strong> and copy the keys and endpoint details probably in a notepad.</p><blockquote>⚠️ Please keep a note that keys and endpoint should not be disclosed to unauthorized people as they may impact your azure consumption cost. Regenerate keys if you have accidently disclosed the same.</blockquote><p>Now, you are done with the Azure Portal portion now and can navigate to Power BI.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/997/1*2s248qtR991peCVRA3M_cw.png" /><figcaption>Keys and Endpoint play important role in Power BI integration, Keep them secure</figcaption></figure><h3>Step 2: Power BI Integration</h3><p>Open a new instance of Power BI desktop&gt;&gt; Import Data from Excel&gt;&gt;Browse the sample data file &gt;&gt; <strong>Bingo!</strong> <em>You got your dataset imported in Power BI inching closer to the world of visualization.</em></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*J0OfB6QGbhk5h7XLxRIZRg.png" /><figcaption>A new instance of Power BI</figcaption></figure><p>Use the APIKey and Endpoint link from Step 1 and replace the placeholders in below M query script, which basically helps to perform API calls to Azure. Another important parameter to know here is the <strong>language: ““en””</strong> which can be tweaked to include more than 20 languages (Hindi, Chinese, German, French to name a few).</p><iframe src="" width="0" height="0" frameborder="0" scrolling="no"><a href="https://medium.com/media/6fd67c30c3723e8dd710de631f094a12/href">https://medium.com/media/6fd67c30c3723e8dd710de631f094a12/href</a></iframe><p>Now go ahead and select Get data&gt;&gt;Blank query (this will navigate to Power Query editor)&gt;&gt; Paste the M query code (containing replaced API Key and Endpoint link)</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/951/1*5JlY4Dpj53QKhuzVjgh7jg.png" /><figcaption>Creating a blank query in Microsoft Power BI</figcaption></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ESvb6jHVTjgzl91ByHsR6Q.png" /><figcaption>Paste your M query in Power Query Editor</figcaption></figure><p>It will be a 🔦 good idea to rename the “<strong>Query1”</strong> to something meaningful like <strong>“Sentiment API”</strong>. Go ahead and edit it either by right clicking on left hand side pane or directly editing in Name field on right hand side pane.</p><p>Now, in the power query editor itself navigate to the dataset and under Add Column section&gt;&gt;select <strong>“Invoke Custom Function”&gt;&gt;</strong>Add column name=Sentiment, select function query from drop down and pass text as the column with feedback “Answer”&gt;&gt;Press OK.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*FwoD02BqNSwYDRyquclo4w.png" /><figcaption>Configuring a Custom function in Power Query Editor</figcaption></figure><p>This will invoke the Azure API and create a new column, Expand the column “Sentiment” and change the data types for 3 newly created columns (positive, neutral, negative) to <strong>“Whole Number”</strong>. While you can keep them in decimal format, I would recommend to change them to whole numbers as it helps to visualize them better. Now you can hit “Save &amp; Close” and let the Power BI do its magic! 🎉</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*bT--_hWegPb151OCuAAxlA.png" /><figcaption>Positive, Neutral and Negative sentiment columns</figcaption></figure><p>Before you finally enter visualizations, it will be useful to create a new calculated column which can be used to provide slicers for easy filtering. You can collate everything into one column using below DAX formula.</p><pre><strong>Overall Sentiment = IF(Responses[Sentiment.positive]=1,&quot;Positive&quot;,IF(Responses[Sentiment.neutral]=1,&quot;Neutral&quot;,IF(Responses[Sentiment.negative]=1,&quot;Negative&quot;,&quot;NA&quot;)))</strong></pre><h3>Step 3: Power BI Visualization</h3><p>Now you are ready to visualize 📊 the information. I would recommend to use the following approach:</p><ol><li>A horizontal slicer to filter sentiments by<em> </em><strong><em>Positive, Negative and Neutral</em></strong><em>.</em></li><li>A bar chart to represent sentiment trend by week, month or year.</li><li>Some emojis to represent the feeling and emotions of the audience.</li><li>A table providing all the raw data fields to correlate and <em>“Export to Excel”</em>.</li><li><strong>A disclaimer to specify the limitations of the AI model.</strong></li></ol><blockquote><strong><em>*Being a predictive AI model, this may not be 100% accurate representation of the sentiment but it does helps with actionable insights and quicker decision making providing indicative sentiments. #responsibleAI #transparency.</em></strong></blockquote><p>Last but not the least, you can also add conditional formatting to ensure color schema matches with sentiments.</p><p>Here is an example of sample Power BI template that you can use as a starting point. <a href="https://github.com/jayantkodwani/AI-Text-Analytics/blob/main/Sentiment%20Analysis%20using%20Azure%20Text%20Analytics%20%26%20Power%20BI/Sentiment%20Analytics%20Azure%20%2B%20Power%20BI%20Integration%20DEMO.pbix"><strong>Sentiment Analytics Azure + Power BI Integration DEMO.pbix</strong></a></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/811/1*bTNiDDlzrShH4BJgvlCE_A.png" /><figcaption>Sentiment Analysis visualization Demo in Microsoft Power BI</figcaption></figure><h3>Output</h3><p>By slicing and dicing the filter you can see how effective Azure text analytics resource in performing sentiment analysis. For example, feedbacks like <strong>“good session”</strong><em> </em>and <em>“</em><strong><em>wonderful event”</em></strong> were correctly classified as positive 😃 and similarly feedbacks like <strong><em>“slower connections”</em></strong> and <strong><em>“lot of problems”</em></strong> were correctly classified as negative 😞.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*WWBmhtywSjrS1QXyFEEw7g.png" /><figcaption>Output of Azure Text Analytics for Positive sentiments</figcaption></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*zNTBrw4LuwnPc4HkN2CBNg.png" /><figcaption>Output of Azure Text Analytics for Negative sentiments</figcaption></figure><h3>Conclusion</h3><p>We learned 📘 how to use Microsoft Azure Text Analytics for sentiment analysis and how to integrate the analysis in Microsoft Power BI to develop visualizations.</p><p>You could use other datasets and customize the code to see what suits your use case best!</p><p>Came across a different approach for sentiment analysis? Please drop it in the comments !</p><h3>References</h3><p>[1] <a href="https://www.statista.com/statistics/871513/worldwide-data-created/#:~:text=The%20total%20amount%20of%20data,ever-growing%20global%20data%20sphere">https://www.statista.com/statistics/871513/worldwide-data-created/#:~:text=The%20total%20amount%20of%20data,ever-growing%20global%20data%20sphere</a>.</p><p>[2] <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/tutorials/tutorial-power-bi-key-phrases">https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/tutorials/tutorial-power-bi-key-phrases</a></p><p>[3] Data source: prepared manually by the Author</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=c263ba96cc2c" width="1" height="1" alt=""><hr><p><a href="https://medium.com/data-science/analyzing-and-visualizing-sentiments-from-unstructured-raw-data-c263ba96cc2c">Analyzing and Visualizing Sentiments from unstructured raw data</a> was originally published in <a href="https://medium.com/data-science">TDS Archive</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[How and Why I became PMP certified!]]></title>
            <link>https://medium.com/@jayant.kodwani/how-and-why-i-became-pmp-certified-ca2af8ec724e?source=rss-23796786d508------2</link>
            <guid isPermaLink="false">https://medium.com/p/ca2af8ec724e</guid>
            <category><![CDATA[project-management]]></category>
            <category><![CDATA[projects]]></category>
            <category><![CDATA[pmi]]></category>
            <category><![CDATA[pmp]]></category>
            <category><![CDATA[pmp-certification]]></category>
            <dc:creator><![CDATA[Jayant Kumar Kodwani]]></dc:creator>
            <pubDate>Thu, 18 Feb 2021 17:42:55 GMT</pubDate>
            <atom:updated>2021-02-18T17:42:55.881Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/340/1*kxsCWAWRkOV7eQnqusKF-w.png" /><figcaption>How and why I became PMP certified</figcaption></figure><p>So, the first question, What is PMI? What is PMP? Well, <a href="http://pmi.org/">PMI </a>is Project Management Institute which is the world’s leading association for those who consider project, program or portfolio management their profession.</p><p>I started my journey with PMI in <strong>2017 </strong>while I saw my <em>ex-manager’s Linkedin profile</em> with suffix called “<strong>PMP</strong>” :) Almost immediately, I started researching about the PMP (Project Management Professional) certification and learnt how valuable is the knowledge and credibility for my career. As I was handling a lot of projects, so I could literally relate to most of the concepts right away like Planning, Scope, Costs, quality etc.</p><p>Next step, <em>I took PMI membership, submitted application, booked the exam, studied day and night, took some time off before exam, did 10 mock tests </em>and <strong>20 </strong>days after Bingo!!!! I became Jayant Kodwani PMP.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*XUJ1zJV9PSmFNnvNfhBSQg.jpeg" /><figcaption>A dream does not become reality through magic; it takes sweat, determination, and hard work.</figcaption></figure><p>For many aspirants, PMP is just a magic wand which can help them earn higher salaries. I don’t believe it at all. There is a difference between <strong>“Acquiring knowledge”</strong> and <strong>“Applying Knowledge and gaining experience”.</strong> With PMP certification you get knowledge and tools which are invaluable (*for those who take it seriously) but ultimately it is your attitude and determination that can take you to heights. let me quote here</p><blockquote><strong>Knowledge unused</strong> is worthless; only <strong>knowledge</strong> applied and shared is power.</blockquote><p>So, here is what I did, logged into wordpress and started my blog <a href="https://jayantkodwani.com/">https://jayantkodwani.com/</a> and shared my experience and learnings. I used my expertise in Excel, VBA and created some of the unique tools in the field of project management. Feel free to access them below.</p><blockquote>(<a href="https://jayantkodwani.com/mastering-six-sigma-and-pert-pmp-questions/">Mastering PERT/BETA/3 Point Estimate and Six Sigma PMP Questions</a>)</blockquote><blockquote><a href="https://jayantkodwani.com/pmp-evm-earned-value-management-terms-and-formula-calculator-and-mock-test-in-excel-spreadsheet/">PMP EVM (Earned Value Management) terms and formula calculator with Mock Exam in MS Excel Spreadsheet</a></blockquote><p>For me, PMP certification opened the gateway of ultimate happiness where on one side, I could not resist to learn more about project management (2 months later, I did PRINCE2 certification) and on the other side I had the joy of giving, sharing, mentoring and helping others to learn and acquire the knowledge.</p><p>With that note, I am closing this story and promise to share lot more in upcoming posts. Don’t forget to follow me on Medium :)</p><blockquote>Feel free to connect to my network : <a href="https://www.linkedin.com/in/jayantkodwani/"><strong>https://www.linkedin.com/in/jayantkodwani/</strong></a></blockquote><blockquote><strong>and follow my blog at</strong></blockquote><blockquote><a href="https://www.jayantkodwani.com/"><strong>https://www.jayantkodwani.com</strong></a></blockquote><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=ca2af8ec724e" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Delete these words from your resume ASAP]]></title>
            <link>https://medium.com/swlh/delete-these-words-from-your-resume-asap-bec83fb39b87?source=rss-23796786d508------2</link>
            <guid isPermaLink="false">https://medium.com/p/bec83fb39b87</guid>
            <category><![CDATA[job-search-tips]]></category>
            <category><![CDATA[cv]]></category>
            <category><![CDATA[resume]]></category>
            <category><![CDATA[better-resume]]></category>
            <category><![CDATA[resume-writing]]></category>
            <dc:creator><![CDATA[Jayant Kumar Kodwani]]></dc:creator>
            <pubDate>Wed, 17 Feb 2021 18:04:55 GMT</pubDate>
            <atom:updated>2021-02-17T18:13:16.777Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/883/1*R3mhUW98g563zAu_AL873g.jpeg" /><figcaption>“No one creates a perfect resume on their first try”</figcaption></figure><p>Before you get that call for an interview, its your resume which can make or break a connection with the recruiters and hiring managers. A strong and impactful resume should have the power to communicate with the right set of comprehension and word selection. While many people nail this art with ease, others struggle with what to write, what to highlight and how to summarize and end up using what is known as “<strong>Buzzwords</strong>“. These buzzwords sounds great to read but actually do not add any value to your credibility. Here are the top 10 buzzwords that you should delete from your resume asap.</p><ol><li><strong>motivated/highly motivated</strong></li><li><strong>hard working</strong></li><li><strong>energetic</strong></li><li><strong>punctual</strong></li><li><strong>loyal</strong></li><li><strong>enthusiastic</strong></li><li><strong>team player</strong></li><li><strong>client-focused</strong></li><li><strong>a people person/leader</strong></li><li><strong>good communicator/ interpersonal skills</strong></li></ol><ul><li>So I cleaned up resume but now it looks deserted</li><li>How will a recruiter assess my resume?</li><li>What next?? Why did you suggest to even remove these?</li></ul><p>The problem with buzzwords is that they are not backed up with your experience and achievements. They appear to be fake and often<strong> copy/pasted </strong>from other fellas, So, the answer is that you should add your actions, examples, evidences and how you demonstrated those qualities. This can be done when you use verbs like:</p><ol><li>As a part of project team, I <strong>contributed </strong>by….</li><li>I <strong>developed</strong>…..</li><li>I <strong>initiated/took an initiative</strong>….a daily stand up…</li><li>I <strong>conducted</strong>….sessions for training/coaching…</li><li><strong>Managed </strong>the….. project/transition…</li><li>I<strong> mentored…..</strong></li><li>I<strong> ensured….</strong></li><li>I <strong>transitioned…..</strong></li><li><em>Provide evidence</em>&gt; I was <strong>recognized/awarded/nominated….</strong></li><li><em>Provide evidence</em>&gt; I got <strong>certified</strong> by…..</li></ol><p>Last but not the least, don’t miss I<strong> volunteered </strong>to add a cherry on the cake. To conclude, I would recommend you</p><ul><li>To check your resume and get rid of the buzzwords.</li><li>Never ever let anybody else create/write your resume/ Do not copy stuff as is from your friends and colleagues. You might accidently add the buzzwords as well.</li><li>Provide actions/outcomes/evidences/efforts.</li></ul><p>I hope the above tips will help you in your job search journey especially during these tough pandemic times. <strong>Best of luck!</strong></p><p>Feel free to connect to my network : <a href="https://www.linkedin.com/in/jayantkodwani/"><strong>https://www.linkedin.com/in/jayantkodwani/</strong></a></p><p><strong>and follow my blog at</strong></p><p><a href="https://www.jayantkodwani.com"><strong>https://www.jayantkodwani.com</strong></a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=bec83fb39b87" width="1" height="1" alt=""><hr><p><a href="https://medium.com/swlh/delete-these-words-from-your-resume-asap-bec83fb39b87">Delete these words from your resume ASAP</a> was originally published in <a href="https://medium.com/swlh">The Startup</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[How to Book a Tiger Safari at Ranthambore National Park]]></title>
            <link>https://medium.com/@jayant.kodwani/how-to-book-a-tiger-safari-at-ranthambore-national-park-e05c92112f09?source=rss-23796786d508------2</link>
            <guid isPermaLink="false">https://medium.com/p/e05c92112f09</guid>
            <category><![CDATA[forest]]></category>
            <category><![CDATA[wildlife-conservation]]></category>
            <category><![CDATA[tigers]]></category>
            <category><![CDATA[safari]]></category>
            <category><![CDATA[wildlife]]></category>
            <dc:creator><![CDATA[Jayant Kumar Kodwani]]></dc:creator>
            <pubDate>Thu, 03 May 2018 11:42:20 GMT</pubDate>
            <atom:updated>2021-02-18T18:00:34.208Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*LcCFcO8MilRsb5nFAlCWig.jpeg" /><figcaption>Can you spot the Sambar Deer? It is Tiger’s Favorite Food.. Yummy</figcaption></figure><p>Dear Readers,</p><p>Majority of tourists (domestic as well as Foreign) don’t know how to online book Tiger safari at Ranthambore through official means and end up booking safari at higher prices through Hotels and touts. Hotels/agents charge <strong>40–70% higher </strong>than the genuine amount basis the season and availability. For example:- I have seen hotels/agents charging around <strong>1200 INR per person (Indian)</strong> for a Canter Safari whereas the official charges for Safari booking as of 2018 is <strong>582 INR per person (Indian) Canter. let me help you with more details.</strong></p><blockquote><em>The official website of Rajasthan Government for Wildlife Safari Booking is </em><a href="http://fmdss.forest.rajasthan.gov.in/"><em>fmdss.forest.rajasthan.gov.in</em></a><em>.</em></blockquote><p>There is also a <a href="http://fmdss.forest.rajasthan.gov.in/Help/User_Manual_Online%20_Ticket_Booking.pdf">step-by-step PDF manual</a> which will help you with the process and guidance for booking the tickets online.</p><p>Let me talk more about the things which usually nobody shares. Below is a copy of Booking confirmation Slip for a Canter Safari in Zone-3. This slip provides a lot of information for about Ranthambore Safari like<strong> the timings, boarding point, charges in Details and terms and conditions.</strong></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/998/0*UeBc4LiVYCRZZghL" /></figure><h3>Safari Zones, Mode and Cost at Ranthambore National Park</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*nsJH3CMyU9rZIGDhyLEZ-g.jpeg" /><figcaption>Sambar Deers on a run for drinking water at Ranthambore National Park, India</figcaption></figure><p>Once you have registered on the portal, you will face questions like:</p><ul><li>Which safari zone is the best?</li><li>What is the best mode of Safari?</li><li>What would be the cost of Safari?</li></ul><p>Below is the table with all the answers. However, talking about safari zones there is no guarantee of a Tiger sighting in any of the zones. It is all about sheer Luck and the probability. Though Zone 3 has much higher probability of Tiger sighting because of the water bodies, you may still end up without any Tiger Sighting. From my personal experience, I have visited Zone 3 and 6 and was unsuccessful of a Tiger Sighting, but I am optimistic and would surely try again.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*H0Oz4c-GeAgg4Xz7" /></figure><h3>Important Note for Foreign visitors</h3><p>You might face challenges while trying to register on <a href="https://sso.rajasthan.gov.in/register?ru=fmdss">https://sso.rajasthan.gov.in/register?ru=fmdss</a> as you don’t have Indian ID’s like Aadhaar and Facebook/Google/Twitter Logins don’t work most of the time. In case you face such issues, don’t be upset and feel free to <a href="https://jayantkodwani.com/contact-form/">contact me</a> to facilitate the same. I can secure a booking for you from my Login ID. Why I am ready to help? because of the vision of this blog “ <em>This Life is to help others</em> “. How much will it cost? Nothing</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/478/0*Auu9k6ZW0Dm7jGC0" /></figure><h3>The Boarding Point and time for Safari</h3><p>You should reach the boarding point at-least 1 hour prior to the Safari Time. The boarding point is at Forest Safari Booking Office. Here is the exact location and address for the boarding point.</p><blockquote><em>Boarding Point:- Forest Safari Booking Office, Shilpgram, Village Ramsinghpura, Ranthambhore Road, Sawai Madhopur</em></blockquote><p><strong>Below is the Google Map location for the boarding point.</strong></p><p><a href="https://jayantkodwani.com/how-to-book-a-tiger-safari-at-ranthambore-national-park/">https://jayantkodwani.com/how-to-book-a-tiger-safari-at-ranthambore-national-park/</a></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*41L-WPzB94rKK4DWbQVLaQ.jpeg" /><figcaption>Can you spot the Crocodile?? Yes there it is, in the lake.. Good Job!</figcaption></figure><h4>I hope this article was helpful. Wishing you Good Luck for a Tiger Sighting at Ranthambore.</h4><blockquote><em>Feel free to connect to my network : </em><a href="https://www.linkedin.com/in/jayantkodwani/"><strong><em>https://www.linkedin.com/in/jayantkodwani/</em></strong></a></blockquote><blockquote><strong><em>and follow my blog at</em></strong></blockquote><blockquote><a href="https://www.jayantkodwani.com/"><strong><em>https://www.jayantkodwani.com</em></strong></a></blockquote><p><em>Originally published at </em><a href="https://jayantkodwani.com/how-to-book-a-tiger-safari-at-ranthambore-national-park/"><em>https://jayantkodwani.com</em></a><em> on May 3, 2018.</em></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=e05c92112f09" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>