cricketr (version 0.0.23)

clean: Create a batsman data frame given the batsman's CSV file

Description

The function removes rows from the batsman dataframe where the batsman did not bat (DNB) or the team did not bat (TDNB). COnverts not outs '*' (97*, 128*) to 97,128 by stripping the '*' character. It picks all the complete cases and returns the data frame

Usage

clean(file)

Arguments

file

CSV file with the batsman data obtained with getPlayerData

Value

Returns the cleaned batsman dataframe

Details

More details can be found in my short video tutorial in Youtube https://www.youtube.com/watch?v=q9uMPFVsXsI

References

http://www.espncricinfo.com/ci/content/stats/index.html https://gigadom.wordpress.com/

See Also

cleanBowlerData getPlayerData batsman4s batsmanMovingAverage

Examples

Run this code
# NOT RUN {
# Get or use the <batsman>.csv obtained with getPlayerData()
#  <- getPlayerData(35320,file="tendulkar.csv",type="batting", homeOrAway=c(1,2),result=c(1,2,4))

# clean the dataframe
pathToFile <- system.file("data", "tendulkar.csv", package = "cricketr")
clean(pathToFile)

# Note: This example uses the file kumble.csv from the /data directory. However
# you can use any directory as long as the data file exists in that directory.
# }

Run the code above in your browser using DataCamp Workspace