Hi. I ran some code and I am trying to access the table with the data in it. I want in particular to delete the 31st row for example Monthly means and totals: <NA> <NA> <NA> <NA> <NA> <NA> <NA> <NA> <NA> <NA> <NA> <NA> <NA> or remove the names of the columns (or change them). Day T TM Tm SLP H PP VV V VM VG RA SN TS I tried all sorts of things but they don't give me access: library(XML) oneurl="http://www.tutiempo.net/en/Climate/FUKUSHIMA/11-2012/475950.htm" allFuku=data.frame() #need to initialize it with column names temp.tables=readHTMLTable(url) temp.tables[3][2] temp.tables[3] temp.tables[3][3] temp.tables[3][2,] str(temp.tables[3]) temp.tables[3][2,2] dim(temp.tables[3]) temp.tables[3]$SN temp.tables[3][1] temp.tables[3][1][2,] str(temp.tables[3][1]) temp.tables[3][1]$SN temp.tables[3][1][1][2,] [[alternative HTML version deleted]]