View source: R/getAllMatchesBetweenTeams.R
getAllMatchesBetweenTeams | R Documentation |
This function gets all the data on matches between opposing teams for e.g India-Pakistan, Englad-Australia, South Africa- Sri Lanka etc. It constructs a huge dataframe of all these matches. This can be saved by the user which can be used in function in which analyses are done for all matches between these teams. This is done by loading the saved .RData for each match and performing an rbind of the data frames for each match
getAllMatchesBetweenTeams(team1,team2,dir=".",save=FALSE,odir = ".")
team1 |
One of the team in consideration e.g (India, Australia, England) |
team2 |
The other team for which matches are needed e.g( India, Sri Lanka, Pakistan) |
dir |
The input directory which has the RData files of matches between teams |
save |
Default=FALSE. This parameter indicates whether the combined data frame needs to be saved or not. It is recommended to save this large dataframe as the creation of this data frame takes a several seconds depending on the number of matches |
odir |
The output directory |
matches The combined data frame
Maintainer: Tinniam V Ganesh tvganesh.85@gmail.com
Tinniam V Ganesh
https://cricsheet.org/
https://gigadom.in/
https://github.com/tvganesh/yorkrData/
bowlerMovingAverage
bowlerWicketsVenue
getAllMatchesAllOpposition
## Not run:
# Get all matches for team India
getAllMatchesAllOpposition("India",dir="../data/",save=TRUE)
getAllMatchesAllOpposition("Australia",dir="./mysavedata/",save=TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.