Learn R Programming

yorkr (version 0.0.42)

teamBattingScorecardAllOppnAllMatches: Team batting scorecard against all oppositions in all matches

Description

This function omputes and returns the batting scorecard of a team in all matches against all oppositions. The data frame has the ball played, 4's,6's and runs scored by batsman

Usage

teamBattingScorecardAllOppnAllMatches(matches,theTeam)

Value

details The data frame of the scorecard of the team in all matches against all oppositions

Arguments

matches

All matches of the team in all matches with all oppositions

theTeam

The team for which the the batting partnerships are sought

Author

Tinniam V Ganesh

References

https://cricsheet.org/
https://gigadom.in/
https://github.com/tvganesh/yorkrData/

See Also

teamBatsmenVsBowlersAllOppnAllMatchesPlot
teamBatsmenPartnershipOppnAllMatchesChart
teamBatsmenPartnershipAllOppnAllMatchesPlot
teamBowlingWicketRunsAllOppnAllMatches

Examples

Run this code
if (FALSE) {
# Get all matches between India with all oppositions
matches <-getAllMatchesAllOpposition("India",dir="../data/",save=TRUE)

# This can also be loaded from saved file
# load("allMatchesAllOpposition-India.RData")

# Top batsman is displayed in descending order of runs
teamBattingScorecardAllOppnAllMatches(matches,theTeam="India")

# The best England players scorecard against India is shown
teamBattingScorecardAllOppnAllMatches(matches,theTeam="England")
}

Run the code above in your browser using DataLab