Help to Warnings()

I keep receiving multiple warnings() despite what I do.

Please see that attached picture. Do you have any idea what is wrong?

I am currently working in the metafor-package, and as you can see, the Forest Plot seem very odd too.

The code:

q <- read.csv2('~/Desktop/Artikler/DOTATOC meningioma/data11.csv')

Gives the following error:

Der var 50 eller flere advarsler (brug warnings() for at se den første 50)

translates to

There were 50 or more warnings (use warnings() to see the first 50)

Warnings()... up to 50:
1: In doTryCatch(return(expr), name, parentenv, handler) :
ingen skrift kunne findes for familie »1« (translation: no font could be found for family >1<)
2: In doTryCatch(return(expr), name, parentenv, handler) :
ingen skrift kunne findes for familie »1«
3: In doTryCatch(return(expr), name, parentenv, handler) :
ingen skrift kunne findes for familie »1«
4: In doTryCatch(return(expr), name, parentenv, handler) :

ingen skrift kunne findes for familie »1«

q <- structure(list(study = structure(c(5L, 3L, 1L, 2L, 4L), .Label = c("Bartolomei et al.",
"Gerster-Gillieron et al.", "Marincek et al.", "Minutoli et al.",
"Seystahl et al."), class = "factor"), xi = c(10L, 23L, 19L,
13L, 7L), ni = c(20L, 34L, 29L, 15L, 8L), citation = c(1L, 2L,
4L, 3L, 5L), year = c(2016L, 2015L, 2009L, 2015L, 2014L), mi = c(10L,
11L, 10L, 2L, 4L), mod = c(2L, 0L, 1L, 0L, 1L)), class = "data.frame", row.names = c(NA,
-5L))

The actual .csv file can be downloaded here

Thanks

Could you translate the error messages and post them here as code (not screenshot).?

See edit. Thank you.

Any chance you could share that csv file with so we can try to see what's going on?

I added a dput(q), but I could not upload the .csv-file? Is this sufficient?

It seems like the problem occurs while reading the csv file so I think it would be better to check the file itself, you can post a link to the file hosted on some cloud storage service like Dropbox, Google Drive, etc.

I have updated the question - thank you!

I don't get any warnings if I specify sep = ";", try with this.

q <- read.csv('~/Desktop/Artikler/DOTATOC meningioma/data11.csv',  sep = ";")

Thank you for your reply. That did unfortunately not solve the problem.

Are you sure that you get those messages after running just the first line of code, or you are sourcing the whole script? Because it seems like the warnings are related with you specifying font =1 in the forest() function. "1" is not a valid font name, maybe you are trying to specify font size using the wrong parameter?.

Please turn this into a minimal REPRoducible EXample (reprex)? A reprex makes it much easier for others to understand your issue and figure out how to help.

If you've never heard of a reprex before, you might want to start by reading this FAQ:

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.