Skip to content
Prev 293825 / 398502 Next

Problem in executing R-script

Hi Suhaila,

You don't need to make a function: your script should just contain:
med <- read.csv("medicalData.csv")

If you do want to make a function, then you need to assign the
resulting value to something, eg:

med <- readData()

but there's no reason to do that. Values that are assigned within a
function don't persist in the global environment.

Sarah

On Mon, May 7, 2012 at 1:41 PM, Suhaila Haji Mohd Hussin
<bell_beauty12 at hotmail.com> wrote: