Displaying 7 results from an estimated 7 matches for "islr".
Did you mean:
isl
2017 Dec 16
2
Auto Data in the ISLR Package
Dear All:
I would like to create a subset data set *with only* all Ford and all
Toyota cars from the Auto data set in ISLR R Package. Thank you very much
in advance.
Please use the following code to see how is the data look like.
install.packages("ISLR")
library(ISLR)
data(Auto)
head(Auto)
with many thanks
abou
______________________
*AbouEl-Makarim Aboueissa, PhD*
*Professor of Statistics*
*Departm...
2017 Dec 16
0
Auto Data in the ISLR Package
...eathed in his "Bloom County" comic strip )
On Sat, Dec 16, 2017 at 11:44 AM, AbouEl-Makarim Aboueissa <
abouelmakarim1962 at gmail.com> wrote:
> Dear All:
>
> I would like to create a subset data set *with only* all Ford and all
> Toyota cars from the Auto data set in ISLR R Package. Thank you very much
> in advance.
>
> Please use the following code to see how is the data look like.
>
>
> install.packages("ISLR")
> library(ISLR)
> data(Auto)
> head(Auto)
>
>
> with many thanks
> abou
> ______________________
>...
2017 Dec 17
4
Auto Data in the ISLR Package
...comic strip )
>
> On Sat, Dec 16, 2017 at 11:44 AM, AbouEl-Makarim Aboueissa <
> abouelmakarim1962 at gmail.com> wrote:
>
> > Dear All:
> >
> > I would like to create a subset data set *with only* all Ford and all
> > Toyota cars from the Auto data set in ISLR R Package. Thank you very
> much
> > in advance.
> >
> > Please use the following code to see how is the data look like.
> >
> >
> > install.packages("ISLR")
> > library(ISLR)
> > data(Auto)
> > head(Auto)
> >
> >
>...
2017 Dec 17
0
Auto Data in the ISLR Package
...On Sat, Dec 16, 2017 at 11:44 AM, AbouEl-Makarim Aboueissa <
>> abouelmakarim1962 at gmail.com> wrote:
>>
>> > Dear All:
>> >
>> > I would like to create a subset data set *with only* all Ford and all
>> > Toyota cars from the Auto data set in ISLR R Package. Thank you very
>> much
>> > in advance.
>> >
>> > Please use the following code to see how is the data look like.
>> >
>> >
>> > install.packages("ISLR")
>> > library(ISLR)
>> > data(Auto)
>> &...
2017 Dec 17
1
Auto Data in the ISLR Package
...11:44 AM, AbouEl-Makarim Aboueissa <
>>> abouelmakarim1962 at gmail.com> wrote:
>>>
>>> > Dear All:
>>> >
>>> > I would like to create a subset data set *with only* all Ford and all
>>> > Toyota cars from the Auto data set in ISLR R Package. Thank you very
>>> much
>>> > in advance.
>>> >
>>> > Please use the following code to see how is the data look like.
>>> >
>>> >
>>> > install.packages("ISLR")
>>> > library(ISLR)
>...
2017 Dec 17
0
Auto Data in the ISLR Package
...t; On Sat, Dec 16, 2017 at 11:44 AM, AbouEl-Makarim Aboueissa <
>> abouelmakarim1962 at gmail.com> wrote:
>>
>>> Dear All:
>>>
>>> I would like to create a subset data set *with only* all Ford and all
>>> Toyota cars from the Auto data set in ISLR R Package. Thank you very
>> much
>>> in advance.
>>>
>>> Please use the following code to see how is the data look like.
>>>
>>>
>>> install.packages("ISLR")
>>> library(ISLR)
>>> data(Auto)
>>> he...
2020 Apr 26
3
Mantener nombres de variables
Hola
tengo la siguiente duda,
?C?mo hago para que R no me cambie el nombre de las variables en este ejemplo?
library(ISLR)
data(Hitters)
Hitters<-na.omit(Hitters)
modelo=lm(Salary~.,data=Hitters)
modelo
las variables
League
Division
NewLeague
ahora se llaman
LeagueN
DivisionW
NewLeagueN
quiero pasar esas variables a 0-1,
he probado con recode o con fastDummies , pero al final acaba cambi?ndome las variables....