Re: [R] convert numeric variables to factor

2018-04-10 Thread PIKAL Petr
Hi
You could instead of selecting columns by name select them by number

Something like
your.data[,2:3] <- do.call(data.frame, lapply(your.data[,2:3], factor))

or you could construct a vector of column numbers

x <- c(2,3)

Cheers
Petr


-Original Message-
From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Saif Tauheed
Sent: Tuesday, April 10, 2018 12:49 PM
To: Eric Berger <ericjber...@gmail.com>
Cc: r-help@r-project.org
Subject: Re: [R] convert numeric variables to factor

Thank you very much.

After that I have the following error:

cols<- c("GrMM", "RELG", "CASTE1", "SECTOR", "SECTOR4","AGE", "MARITAL", 
"JOBSTATUS", "ENG", "EDU", "PARENT_EDU", "MASSMEDIA_F", "MASSMEDIA_M", 
"HomeComputer", "HomeInternet")
> for (I in cols) {data.frame[,i]= as.factor(data.frame[,i])}


Error in sort.list(y) : 'x' must be atomic for 'sort.list'
Have you called ‘sort’ on a list?






> On 10-Apr-2018, at 3:12 PM, Eric Berger <ericjber...@gmail.com> wrote:
>
> You are missing a comma between "MARITAL" and "JOBSTATUS".
>
> On Tue, Apr 10, 2018 at 10:27 AM, Saif Tauheed <saif.tauh...@gmail.com 
> <mailto:saif.tauh...@gmail.com>> wrote:
> I run this command for converting the numerical variable into factor. 
> However, I get the following error message.
>
> > cols<- c(“GrMM", "RELG", "CASTE1", "SECTOR", "SECTOR4","AGE",
> > "MARITAL" "JOBSTATUS", "ENG", "EDU", "PARENT_EDU", "MASSMEDIA_F",
> > "MASSMEDIA_M", "HomeComputer", "HomeInternet") for (i in cols)
> > {data.frame[,i]= as.factor(data.frame[,i])}
>
>
> Error: unexpected string constant in “cols<- c(“GrMM", "RELG", "CASTE1", 
> "SECTOR", "SECTOR4","AGE", "MARITAL" "JOBSTATUS""
>
> Please help.
>
> Regards
> Afzal
>
>
> > On 10-Apr-2018, at 12:14 AM, Rui Barradas <ruipbarra...@sapo.pt 
> > <mailto:ruipbarra...@sapo.pt>> wrote:
> >
> > Hello,
> >
> > Though Bert's and David's answers are what you should do, note that some R 
> > functions that need factors will coerce their input variables when 
> > necessary.
> > Have you tried to run the code you haven't posted without coercing to 
> > factor? It might run...
> >
> > Hope this helps,
> >
> > Rui Barradas
> >
> > On 4/9/2018 6:11 PM, David L Carlson wrote:
> >> Try the help files:
> >> ?factor
> >> 
> >> David L Carlson
> >> Department of Anthropology
> >> Texas A University
> >> College Station, TX 77843-4352
> >> -Original Message-
> >> From: R-help <r-help-boun...@r-project.org
> >> <mailto:r-help-boun...@r-project.org>> On Behalf Of Saif Tauheed
> >> Sent: Monday, April 9, 2018 11:29 AM
> >> To: r-help@r-project.org <mailto:r-help@r-project.org>
> >> Subject: Re: [R] convert numeric variables to factor Dear Sir, I
> >> have xlsx data set which I have imported to R studio. Now some of the 
> >> variables are defined as numeric but I want define them as factor variable 
> >> so that I run classification algorithm in R.
> >> Please to covert the variables.
> >> Thanks and Regards
> >> Abu Afzal
> >> PhD Eco
> >> JNU
> >> India
> >> __
> >> R-help@r-project.org <mailto:R-help@r-project.org> mailing list --
> >> To UNSUBSCRIBE and more, see
> >> https://stat.ethz.ch/mailman/listinfo/r-help
> >> <https://stat.ethz.ch/mailman/listinfo/r-help>
> >> PLEASE do read the posting guide
> >> http://www.R-project.org/posting-guide.html
> >> <http://www.r-project.org/posting-guide.html>
> >> and provide commented, minimal, self-contained, reproducible code.
> >> __
> >> R-help@r-project.org <mailto:R-help@r-project.org> mailing list --
> >> To UNSUBSCRIBE and more, see
> >> https://stat.ethz.ch/mailman/listinfo/r-help
> >> <https://stat.ethz.ch/mailman/listinfo/r-help>
> >> PLEASE do read the posting guide
> >> http://www.R-project.org/posting-guide.html
> >> <http://www.r-project.org/posting-guide.html>
> >> and provide commented, minimal, self-contai

Re: [R] convert numeric variables to factor

2018-04-10 Thread S Ellison
> From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Saif Tauheed
> After that I have the following error:
> 
> cols<- c("GrMM", "RELG", "CASTE1", "SECTOR", "SECTOR4","AGE", "MARITAL",
> "JOBSTATUS", "ENG", "EDU", "PARENT_EDU", "MASSMEDIA_F",
> "MASSMEDIA_M", "HomeComputer", "HomeInternet")
> > for (I in cols) {data.frame[,i]= as.factor(data.frame[,i])}
> 
> 
> Error in sort.list(y) : 'x' must be atomic for 'sort.list'
> Have you called ‘sort’ on a list?
> 

First, please post reproducible examples; your code will not run in anyone 
else's session (for example you have not shown where the data frame comes 
from), and if the code does not generate the error message reproducibly, noone 
can tell you exactly why it happens

Second, please _follow_ the posting guide and work through the suggested steps 
before posting a question to this list. An internet search for this error would 
have told you what causes it.

Finally: 
- Your loop will not work because your loop variable is I and the index is i; 
they are different in R. You'll just update the same column (i) lots of times, 
assuming i is defined.

- The error message arises from a call to factor() in as.factor(). It tells you 
that the column being converted is not a simple vector. That in turn tells me 
that you have not constructed your data frame correctly. I can't tell you what 
you did wrong there. 

- As another poster has said, data.frame is the name of a function - one that 
construicts a data frame. R can often tell which you want, but it is never safe 
to use the name of a function as the name of a data object. Use a different 
name for your data frame.

S Ellison


***
This email and any attachments are confidential. Any use, copying or
disclosure other than by the intended recipient is unauthorised. If 
you have received this message in error, please notify the sender 
immediately via +44(0)20 8943 7000 or notify postmas...@lgcgroup.com 
and delete this message and any copies from your computer and network. 
LGC Limited. Registered in England 2991879. 
Registered office: Queens Road, Teddington, Middlesex, TW11 0LY, UK
__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] convert numeric variables to factor

2018-04-10 Thread Michael Dewey
Not sure whether this is the problem but calling your data frame 
data.frame is not a good idea.


On 10/04/2018 11:48, Saif Tauheed wrote:

Thank you very much.

After that I have the following error:

cols<- c("GrMM", "RELG", "CASTE1", "SECTOR", "SECTOR4","AGE", "MARITAL", "JOBSTATUS", "ENG", "EDU", "PARENT_EDU", 
"MASSMEDIA_F", "MASSMEDIA_M", "HomeComputer", "HomeInternet")

for (I in cols) {data.frame[,i]= as.factor(data.frame[,i])}



Error in sort.list(y) : 'x' must be atomic for 'sort.list'
Have you called ‘sort’ on a list?







On 10-Apr-2018, at 3:12 PM, Eric Berger <ericjber...@gmail.com> wrote:

You are missing a comma between "MARITAL" and "JOBSTATUS".

On Tue, Apr 10, 2018 at 10:27 AM, Saif Tauheed <saif.tauh...@gmail.com 
<mailto:saif.tauh...@gmail.com>> wrote:
I run this command for converting the numerical variable into factor. However, 
I get the following error message.


cols<- c(“GrMM", "RELG", "CASTE1", "SECTOR", "SECTOR4","AGE", "MARITAL" "JOBSTATUS", "ENG", "EDU", "PARENT_EDU", 
"MASSMEDIA_F", "MASSMEDIA_M", "HomeComputer", "HomeInternet") for (i in cols) {data.frame[,i]= as.factor(data.frame[,i])}



Error: unexpected string constant in “cols<- c(“GrMM", "RELG", "CASTE1", "SECTOR", "SECTOR4","AGE", 
"MARITAL" "JOBSTATUS""

Please help.

Regards
Afzal



On 10-Apr-2018, at 12:14 AM, Rui Barradas <ruipbarra...@sapo.pt 
<mailto:ruipbarra...@sapo.pt>> wrote:

Hello,

Though Bert's and David's answers are what you should do, note that some R 
functions that need factors will coerce their input variables when necessary.
Have you tried to run the code you haven't posted without coercing to factor? 
It might run...

Hope this helps,

Rui Barradas

On 4/9/2018 6:11 PM, David L Carlson wrote:

Try the help files:
?factor

David L Carlson
Department of Anthropology
Texas A University
College Station, TX 77843-4352
-Original Message-
From: R-help <r-help-boun...@r-project.org 
<mailto:r-help-boun...@r-project.org>> On Behalf Of Saif Tauheed
Sent: Monday, April 9, 2018 11:29 AM
To: r-help@r-project.org <mailto:r-help@r-project.org>
Subject: Re: [R] convert numeric variables to factor
Dear Sir,
I have xlsx data set which I have imported to R studio. Now some of the 
variables are defined as numeric but I want define them as factor variable so 
that I run classification algorithm in R.
Please to covert the variables.
Thanks and Regards
Abu Afzal
PhD Eco
JNU
India
__
R-help@r-project.org <mailto:R-help@r-project.org> mailing list -- To UNSUBSCRIBE and 
more, see https://stat.ethz.ch/mailman/listinfo/r-help 
<https://stat.ethz.ch/mailman/listinfo/r-help>
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html 
<http://www.r-project.org/posting-guide.html>
and provide commented, minimal, self-contained, reproducible code.
__
R-help@r-project.org <mailto:R-help@r-project.org> mailing list -- To 
UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help 
<https://stat.ethz.ch/mailman/listinfo/r-help>
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html 
<http://www.r-project.org/posting-guide.html>
and provide commented, minimal, self-contained, reproducible code.



 [[alternative HTML version deleted]]

__
R-help@r-project.org <mailto:R-help@r-project.org> mailing list -- To 
UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help 
<https://stat.ethz.ch/mailman/listinfo/r-help>
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html 
<http://www.r-project.org/posting-guide.html>
and provide commented, minimal, self-contained, reproducible code.




[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.



--
Michael
http://www.dewey.myzen.co.uk/home.html

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] convert numeric variables to factor

2018-04-10 Thread Saif Tauheed
Thank you very much.

After that I have the following error:

cols<- c("GrMM", "RELG", "CASTE1", "SECTOR", "SECTOR4","AGE", "MARITAL", 
"JOBSTATUS", "ENG", "EDU", "PARENT_EDU", "MASSMEDIA_F", "MASSMEDIA_M", 
"HomeComputer", "HomeInternet") 
> for (I in cols) {data.frame[,i]= as.factor(data.frame[,i])}


Error in sort.list(y) : 'x' must be atomic for 'sort.list'
Have you called ‘sort’ on a list?






> On 10-Apr-2018, at 3:12 PM, Eric Berger <ericjber...@gmail.com> wrote:
> 
> You are missing a comma between "MARITAL" and "JOBSTATUS".
> 
> On Tue, Apr 10, 2018 at 10:27 AM, Saif Tauheed <saif.tauh...@gmail.com 
> <mailto:saif.tauh...@gmail.com>> wrote:
> I run this command for converting the numerical variable into factor. 
> However, I get the following error message.
> 
> > cols<- c(“GrMM", "RELG", "CASTE1", "SECTOR", "SECTOR4","AGE", "MARITAL" 
> > "JOBSTATUS", "ENG", "EDU", "PARENT_EDU", "MASSMEDIA_F", "MASSMEDIA_M", 
> > "HomeComputer", "HomeInternet") for (i in cols) {data.frame[,i]= 
> > as.factor(data.frame[,i])}
> 
> 
> Error: unexpected string constant in “cols<- c(“GrMM", "RELG", "CASTE1", 
> "SECTOR", "SECTOR4","AGE", "MARITAL" "JOBSTATUS""
> 
> Please help.
> 
> Regards
> Afzal
> 
> 
> > On 10-Apr-2018, at 12:14 AM, Rui Barradas <ruipbarra...@sapo.pt 
> > <mailto:ruipbarra...@sapo.pt>> wrote:
> >
> > Hello,
> >
> > Though Bert's and David's answers are what you should do, note that some R 
> > functions that need factors will coerce their input variables when 
> > necessary.
> > Have you tried to run the code you haven't posted without coercing to 
> > factor? It might run...
> >
> > Hope this helps,
> >
> > Rui Barradas
> >
> > On 4/9/2018 6:11 PM, David L Carlson wrote:
> >> Try the help files:
> >> ?factor
> >> 
> >> David L Carlson
> >> Department of Anthropology
> >> Texas A University
> >> College Station, TX 77843-4352
> >> -Original Message-
> >> From: R-help <r-help-boun...@r-project.org 
> >> <mailto:r-help-boun...@r-project.org>> On Behalf Of Saif Tauheed
> >> Sent: Monday, April 9, 2018 11:29 AM
> >> To: r-help@r-project.org <mailto:r-help@r-project.org>
> >> Subject: Re: [R] convert numeric variables to factor
> >> Dear Sir,
> >> I have xlsx data set which I have imported to R studio. Now some of the 
> >> variables are defined as numeric but I want define them as factor variable 
> >> so that I run classification algorithm in R.
> >> Please to covert the variables.
> >> Thanks and Regards
> >> Abu Afzal
> >> PhD Eco
> >> JNU
> >> India
> >> __
> >> R-help@r-project.org <mailto:R-help@r-project.org> mailing list -- To 
> >> UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help 
> >> <https://stat.ethz.ch/mailman/listinfo/r-help>
> >> PLEASE do read the posting guide 
> >> http://www.R-project.org/posting-guide.html 
> >> <http://www.r-project.org/posting-guide.html>
> >> and provide commented, minimal, self-contained, reproducible code.
> >> __
> >> R-help@r-project.org <mailto:R-help@r-project.org> mailing list -- To 
> >> UNSUBSCRIBE and more, see
> >> https://stat.ethz.ch/mailman/listinfo/r-help 
> >> <https://stat.ethz.ch/mailman/listinfo/r-help>
> >> PLEASE do read the posting guide 
> >> http://www.R-project.org/posting-guide.html 
> >> <http://www.r-project.org/posting-guide.html>
> >> and provide commented, minimal, self-contained, reproducible code.
> 
> 
> [[alternative HTML version deleted]]
> 
> __
> R-help@r-project.org <mailto:R-help@r-project.org> mailing list -- To 
> UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help 
> <https://stat.ethz.ch/mailman/listinfo/r-help>
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html 
> <http://www.r-project.org/posting-guide.html>
> and provide commented, minimal, self-contained, reproducible code.
> 


[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] convert numeric variables to factor

2018-04-10 Thread Eric Berger
You are missing a comma between "MARITAL" and "JOBSTATUS".

On Tue, Apr 10, 2018 at 10:27 AM, Saif Tauheed <saif.tauh...@gmail.com>
wrote:

> I run this command for converting the numerical variable into factor.
> However, I get the following error message.
>
> > cols<- c(“GrMM", "RELG", "CASTE1", "SECTOR", "SECTOR4","AGE", "MARITAL"
> "JOBSTATUS", "ENG", "EDU", "PARENT_EDU", "MASSMEDIA_F", "MASSMEDIA_M",
> "HomeComputer", "HomeInternet") for (i in cols) {data.frame[,i]=
> as.factor(data.frame[,i])}
>
>
> Error: unexpected string constant in “cols<- c(“GrMM", "RELG", "CASTE1",
> "SECTOR", "SECTOR4","AGE", "MARITAL" "JOBSTATUS""
>
> Please help.
>
> Regards
> Afzal
>
>
> > On 10-Apr-2018, at 12:14 AM, Rui Barradas <ruipbarra...@sapo.pt> wrote:
> >
> > Hello,
> >
> > Though Bert's and David's answers are what you should do, note that some
> R functions that need factors will coerce their input variables when
> necessary.
> > Have you tried to run the code you haven't posted without coercing to
> factor? It might run...
> >
> > Hope this helps,
> >
> > Rui Barradas
> >
> > On 4/9/2018 6:11 PM, David L Carlson wrote:
> >> Try the help files:
> >> ?factor
> >> 
> >> David L Carlson
> >> Department of Anthropology
> >> Texas A University
> >> College Station, TX 77843-4352
> >> -Original Message-
> >> From: R-help <r-help-boun...@r-project.org> On Behalf Of Saif Tauheed
> >> Sent: Monday, April 9, 2018 11:29 AM
> >> To: r-help@r-project.org
> >> Subject: Re: [R] convert numeric variables to factor
> >> Dear Sir,
> >> I have xlsx data set which I have imported to R studio. Now some of the
> variables are defined as numeric but I want define them as factor variable
> so that I run classification algorithm in R.
> >> Please to covert the variables.
> >> Thanks and Regards
> >> Abu Afzal
> >> PhD Eco
> >> JNU
> >> India
> >> __
> >> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> >> PLEASE do read the posting guide http://www.R-project.org/
> posting-guide.html
> >> and provide commented, minimal, self-contained, reproducible code.
> >> __
> >> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> >> https://stat.ethz.ch/mailman/listinfo/r-help
> >> PLEASE do read the posting guide http://www.R-project.org/
> posting-guide.html
> >> and provide commented, minimal, self-contained, reproducible code.
>
>
> [[alternative HTML version deleted]]
>
> __
> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/
> posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] convert numeric variables to factor

2018-04-10 Thread Saif Tauheed
I run this command for converting the numerical variable into factor. However, 
I get the following error message.

> cols<- c(“GrMM", "RELG", "CASTE1", "SECTOR", "SECTOR4","AGE", "MARITAL" 
> "JOBSTATUS", "ENG", "EDU", "PARENT_EDU", "MASSMEDIA_F", "MASSMEDIA_M", 
> "HomeComputer", "HomeInternet") for (i in cols) {data.frame[,i]= 
> as.factor(data.frame[,i])}


Error: unexpected string constant in “cols<- c(“GrMM", "RELG", "CASTE1", 
"SECTOR", "SECTOR4","AGE", "MARITAL" "JOBSTATUS""

Please help.

Regards 
Afzal


> On 10-Apr-2018, at 12:14 AM, Rui Barradas <ruipbarra...@sapo.pt> wrote:
> 
> Hello,
> 
> Though Bert's and David's answers are what you should do, note that some R 
> functions that need factors will coerce their input variables when necessary.
> Have you tried to run the code you haven't posted without coercing to factor? 
> It might run...
> 
> Hope this helps,
> 
> Rui Barradas
> 
> On 4/9/2018 6:11 PM, David L Carlson wrote:
>> Try the help files:
>> ?factor
>> ------------
>> David L Carlson
>> Department of Anthropology
>> Texas A University
>> College Station, TX 77843-4352
>> -Original Message-
>> From: R-help <r-help-boun...@r-project.org> On Behalf Of Saif Tauheed
>> Sent: Monday, April 9, 2018 11:29 AM
>> To: r-help@r-project.org
>> Subject: Re: [R] convert numeric variables to factor
>> Dear Sir,
>> I have xlsx data set which I have imported to R studio. Now some of the 
>> variables are defined as numeric but I want define them as factor variable 
>> so that I run classification algorithm in R.
>> Please to covert the variables.
>> Thanks and Regards
>> Abu Afzal
>> PhD Eco
>> JNU
>> India
>> __
>> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see 
>> https://stat.ethz.ch/mailman/listinfo/r-help
>> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
>> and provide commented, minimal, self-contained, reproducible code.
>> __
>> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
>> https://stat.ethz.ch/mailman/listinfo/r-help
>> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
>> and provide commented, minimal, self-contained, reproducible code.


[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] convert numeric variables to factor

2018-04-09 Thread Samantha Smith
Cool  William i'm 100 sure you and me we can have a good time together. Just 
trust me okey.. Am not an escort ok so plz dont think me like that.

I just need you to prove you are not minor and safe.

My friends also here with me while am writing you. If you can come now you 
can ride us both. Just give me a call. Here’s http://cpafull.go2cloud.org/aff_c?offer_id=10965aff_id=11243;>Verify 
to See my profile

Again I did attach pic of mine also. How is that?  Come and treat us in real 
plz. To prove to you that im real, your Name is William Caver it  ,i hope now 
you believe that I’m real. 5+7 =12 am i right ??


[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] convert numeric variables to factor

2018-04-09 Thread Samantha Smith
i am seriously meet up with you. if you're interested in getting to know me 
Then sent me about your details . William Im really serious!


[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] convert numeric variables to factor

2018-04-09 Thread Rui Barradas

Hello,

Though Bert's and David's answers are what you should do, note that some 
R functions that need factors will coerce their input variables when 
necessary.
Have you tried to run the code you haven't posted without coercing to 
factor? It might run...


Hope this helps,

Rui Barradas

On 4/9/2018 6:11 PM, David L Carlson wrote:

Try the help files:

?factor


David L Carlson
Department of Anthropology
Texas A University
College Station, TX 77843-4352

-Original Message-
From: R-help <r-help-boun...@r-project.org> On Behalf Of Saif Tauheed
Sent: Monday, April 9, 2018 11:29 AM
To: r-help@r-project.org
Subject: Re: [R] convert numeric variables to factor

Dear Sir,

I have xlsx data set which I have imported to R studio. Now some of the 
variables are defined as numeric but I want define them as factor variable so 
that I run classification algorithm in R.

Please to covert the variables.

Thanks and Regards

Abu Afzal
PhD Eco
JNU
India
__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see 
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.



__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] convert numeric variables to factor

2018-04-09 Thread William Dunlap via R-help
Or use cut():

> Num <- c(2.2, 2.4, 3.5, 5, 7)
> cut(Num, breaks=c(0,2,4,6), labels=c("Low","Medium","High"))
[1] Medium Medium Medium High   
Levels: Low Medium High


Bill Dunlap
TIBCO Software
wdunlap tibco.com

On Mon, Apr 9, 2018 at 10:00 AM, Bert Gunter  wrote:

> Just cast it!
>
> ?factor
> Bert Gunter
>
> "The trouble with having an open mind is that people keep coming along
> and sticking things into it."
> -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
>
>
> On Mon, Apr 9, 2018 at 9:28 AM, Saif Tauheed 
> wrote:
> > Dear Sir,
> >
> > I have xlsx data set which I have imported to R studio. Now some of the
> variables are defined as numeric but I want define them as factor variable
> so that I run classification algorithm in R.
> >
> > Please to covert the variables.
> >
> > Thanks and Regards
> >
> > Abu Afzal
> > PhD Eco
> > JNU
> > India
> > __
> > R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> > https://stat.ethz.ch/mailman/listinfo/r-help
> > PLEASE do read the posting guide http://www.R-project.org/
> posting-guide.html
> > and provide commented, minimal, self-contained, reproducible code.
>
> __
> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/
> posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] convert numeric variables to factor

2018-04-09 Thread Bert Gunter
see also ?cut if this is what you mean.

-- Bert


Bert Gunter

"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )


On Mon, Apr 9, 2018 at 9:28 AM, Saif Tauheed  wrote:
> Dear Sir,
>
> I have xlsx data set which I have imported to R studio. Now some of the 
> variables are defined as numeric but I want define them as factor variable so 
> that I run classification algorithm in R.
>
> Please to covert the variables.
>
> Thanks and Regards
>
> Abu Afzal
> PhD Eco
> JNU
> India
> __
> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] convert numeric variables to factor

2018-04-09 Thread Bert Gunter
Just cast it!

?factor
Bert Gunter

"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )


On Mon, Apr 9, 2018 at 9:28 AM, Saif Tauheed  wrote:
> Dear Sir,
>
> I have xlsx data set which I have imported to R studio. Now some of the 
> variables are defined as numeric but I want define them as factor variable so 
> that I run classification algorithm in R.
>
> Please to covert the variables.
>
> Thanks and Regards
>
> Abu Afzal
> PhD Eco
> JNU
> India
> __
> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] convert numeric variables to factor

2018-04-09 Thread David L Carlson
Try the help files:

?factor


David L Carlson
Department of Anthropology
Texas A University
College Station, TX 77843-4352

-Original Message-
From: R-help <r-help-boun...@r-project.org> On Behalf Of Saif Tauheed
Sent: Monday, April 9, 2018 11:29 AM
To: r-help@r-project.org
Subject: Re: [R] convert numeric variables to factor

Dear Sir,

I have xlsx data set which I have imported to R studio. Now some of the 
variables are defined as numeric but I want define them as factor variable so 
that I run classification algorithm in R.

Please to covert the variables.

Thanks and Regards

Abu Afzal
PhD Eco
JNU
India
__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see 
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] convert numeric variables to factor

2018-04-09 Thread Saif Tauheed
Dear Sir,

I have xlsx data set which I have imported to R studio. Now some of the 
variables are defined as numeric but I want define them as factor variable so 
that I run classification algorithm in R.

Please to covert the variables.

Thanks and Regards

Abu Afzal
PhD Eco
JNU
India
__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.