There is a table which I read in R.
data <- read.table("lab4_1.csv", sep=";", dec=",", header=TRUE,row.names=1, col.names = c("ПІБ", "Атестат", "Фізика", "Математика", "Укр.М.")) data dat = c(data[,2],data[,3],data[,4]) dat Here is a piece of data: 
And this is what it puts in dat: 

At the very beginning it is already clear that the numbers are not at all what they were in data. Information on R. on the Internet is not enough, can someone tell me why it puts these numbers and how to make the necessary columns? I can not understand what is the error.
PS: I tried to make a table with names (the first column is not the name of the rows, but a separate column with values) and enter only it in the same way. Names changed to a set of numbers, it is not known from where taken.