Learn R Programming

wikibooks (version 0.2.1)

Bundesliga.XML: create an XML-file of all fixtures available in "Bundesliga"-dataset

Description

This function creates an XML-file of all fixtures available in the "Bundesliga"-dataset. By default, the XML-file is called "Bundesliga.xml" and is stored in your working directory using the function sink().

Usage

Bundesliga.XML(Datei = "Bundesliga.xml", Saison = "all")

Arguments

Datei

filename, by default "Bundesliga.xml"

Saison

season to be included, by default "all" for all seasons

See Also

sink

Examples

Run this code
# NOT RUN {
# this saves all season to file "Bundesliga.xml"
Bundesliga.XML()

#this writes only season 2001/2002 to "myfile.xml"
Bundesliga.XML("myfile.xml", "2001/2002")
# }

Run the code above in your browser using DataLab