Displaying 2 results from an estimated 2 matches for "dades_sel2".
Did you mean:
dades_sel
2015 Jul 27
2
Error sql en función
...n el "paste" ya que si coloco la orden original funciona:
==========================
> SQL_PROVA = function (XDADES, XWHE)
+ {
+ XDADES_SQL2 = sqldf ("select * from Aids2 where state in ('NSW', 'QLD') and age < 40")
+ return(XDADES_SQL2)
+ }
> DADES_SEL2 = SQL_PROVA (XDADES = birthwt, XWHE = "where age < '40'")
> table (DADES_SEL2$state)
NSW Other QLD VIC
1102 0 128 0
> max (DADES_SEL2$age)
[1] 39
==========================
Muchas gracias y saludos.
2015 Jul 27
2
Error sql en función
...=================
> > > SQL_PROVA = function (XDADES, XWHE)
> > + {
> > + XDADES_SQL2 = sqldf ("select * from Aids2 where state in ('NSW',
> > 'QLD') and age < 40")
> > + return(XDADES_SQL2)
> > + }
> >
> > > DADES_SEL2 = SQL_PROVA (XDADES = birthwt, XWHE = "where age < '40'")
> >
> > > table (DADES_SEL2$state)
> > NSW Other QLD VIC
> > 1102 0 128 0
> >
> > > max (DADES_SEL2$age)
> > [1] 39
> > ==========================
&g...