Last Time When India Played Against England In T20I

England Tour of India T20I 2021 Team India is scheduled to play 3 T20Is against England from 7 July(2022) – 10 July (2022).   Rohit Sharma and Jos Buttler, the two dynamic openers, will be leading their respective teams in the series which serves as a preparation to fine-tune their best squad for the T20 World Cup in Australia. The last time India and England played against each other in T20I was in a 5-match T20I bilateral series from March 12 (2021) –  March(2021) at Narendra Modi Stadium, Ahmedabad. India won the series 3-2 after winning the decider 5th match. It was a debut series in the Indian cricket team for Ishan Kishan and Surya Kumar Yadav. India were without their […]

Fetching Cricket Score easily in R

Using CricketData API in R is very simple. We’ll assume you know how to work with data in R, so we’ll just fetch the API data and give it to you in an R variable named “btc”. Thereafter you can manipulate the variable ‘btc’ and display/process the output as you see fit! In R , use this code: install.packages(“jsonlite”) library(“jsonlite”) btc <-jsonlite::fromJSON(“https://api.cricapi.com/v1/cricScoreapikey=%APIKEY%”) btc Replace %APIKEY% with your CricketData.org API key. And that’s it! The output will be as per the screenshot below