Data frame challenge [🇷 for BE/BA]

posted by ElMaestro  – Denmark, 2016-12-17 20:40 (2685 d 10:47 ago) – Posting: # 16850
Views: 4,742

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,993 posts in 4,828 threads, 1,656 registered users;
103 visitors (0 registered, 103 guests [including 4 identified bots]).
Forum time: 08:28 CEST (Europe/Vienna)

Never never never never use Excel.
Not even for calculation of arithmetic means.    Martin Wolfsegger

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