Data frame challenge [🇷 for BE/BA]

posted by ElMaestro  – Denmark, 2016-12-17 20:40 (2657 d 18:28 ago) – Posting: # 16850
Views: 4,635

Hi all,

I am struggling with import of a data from a file having a structure like:
[image]

Now, I would like R to understand that
1. we are not dealing with factors, the data frame is a series of numeric vectors.
2. Whenever we encounter something non-numeric such as Apple and Banana we will set it to zero.

So I have this solution:
A=read.table("SomeFile.csv", header=T)
for (i in 1:ncol(A))
  {
    A[,i]=as.numeric(as.character(A[,i]))
    A[,i][is.na(A[,i])]=0
  }


A is now effectively a matrix, or we can as.matrix or matrix it directly.
And although it works, it is painfully unreadable and it also throws warnings (coercion).

I am looking for a solution that is much more readable and not throwing warnings (and we are not going to discuss suppression of warnings, please, it sends shivers down my spine to do it). Regarding readability: I am fine with a solution that takes more coding/more lines, so this is not a competition in doing a lot of stuff in a single line. Single line = more elegance, to some = less readbility to a simpleton like me.

Can anyone help here?

Many thanks.

Pass or fail!
ElMaestro

Complete thread:

UA Flag
Activity
 Admin contact
22,957 posts in 4,819 threads, 1,638 registered users;
79 visitors (0 registered, 79 guests [including 8 identified bots]).
Forum time: 15:09 CET (Europe/Vienna)

Nothing shows a lack of mathematical education more
than an overly precise calculation.    Carl Friedrich Gauß

The Bioequivalence and Bioavailability Forum is hosted by
BEBAC Ing. Helmut Schütz
HTML5