Re: [R] Functional Programming Problem Using purr and R's data.table shift function

2023-01-02 Thread Michael Lachanski
Dénes, thank you for the guidance - which is well-taken.

Your side note raises an interesting question: I find the piping %>%
operator readable. Is there any downside to it? Or is the side note meant
to tell me to drop the last: "%>% `[`"?

Thank you,


==
Michael Lachanski
PhD Student in Demography and Sociology
MA Candidate in Statistics
University of Pennsylvania
mikel...@sas.upenn.edu


On Sat, Dec 31, 2022 at 9:22 AM Dénes Tóth  wrote:

> Hi Michael,
>
> Note that you have to be very careful when using by-reference operations
> in data.table (see `?data.table::set`), especially in a functional
> programming approach. In your function, you avoid this problem by
> calling `data.table(A)` which makes a copy of A even if it is already a
> data.table. However, for large data.table-s, copying can be a very
> expensive operation (esp. in terms of RAM usage), which can be totally
> eliminated by using data.tables in the data.table-way (e.g., joining,
> grouping, and aggregating in the same step by performing these
> operations within `[`, see `?data.table`).
>
> So instead of blindly functionalizing all your code, try to be
> pragmatic. Functional programming is not about using pure functions in
> *every* part of your code base, because it is unfeasible in 99.9% of
> real-world problems. Even Haskell has `IO` and `do`; the point is that
> the  imperative and functional parts of the code are clearly separated
> and imperative components are (tried to be) as top-level as possible.
>
> So when using data.table, a good strategy is to use pure functions for
> performing within-data.table operations, e.g., `DT[, lapply(.SD, mean),
> .SDcols = is.numeric]`, and when these operations alter `DT` by
> reference, invoke the chains of these operations in "pure" wrappers -
> e.g., calling `A <- copy(A)` on the top and then modifying `A` directly.
>
> Cheers,
> Denes
>
> Side note: You do not need to use `DT[ , A:= shift(A, fill = NA, type =
> "lag", n = 1)] %>% `[`(return(DT))`. `[.data.table` returns the result
> (the modified DT) invisibly. If you want to let auto-print work, you can
> just use `DT[ , A:= shift(A, fill = NA, type = "lag", n = 1)][]`.
>
> Note that this also means you usually you do not need to use magrittr's
> or base-R pipe when transforming data.table-s. You can do this instead:
> ```
> DT[
>## filter rows where 'x' column equals "a"
>x == "a"
> ][
>## calculate the mean of `z` for each gender and assign it to `y`
>, y := mean(z), by = "gender"
> ][
>## do whatever you want
>...
> ]
> ```
>
>
> On 12/31/22 13:39, Rui Barradas wrote:
> > Às 06:50 de 31/12/2022, Michael Lachanski escreveu:
> >> Hello,
> >>
> >> I am trying to make a habit of "functionalizing" all of my code as
> >> recommended by Hadley Wickham. I have found it surprisingly difficult
> >> to do
> >> so because several intermediate features from data.table break or give
> >> unexpected results using purrr and its data.table adaptation, tidytable.
> >> Here is the a minimal working example of what has stumped me most
> >> recently:
> >>
> >> ===
> >>
> >> library(data.table); library(tidytable)
> >>
> >> minimal_failing_function <- function(A){
> >>DT <- data.table(A)
> >>DT[ , A:= shift(A, fill = NA, type = "lag", n = 1)] %>% `[`
> >>return(DT)}
> >> # works
> >> minimal_failing_function(c(1,2))
> >> # fails
> >> tidytable::pmap_dfr(.l = list(c(1,2)),
> >>  .f = minimal_failing_function)
> >>
> >>
> >> ===
> >> These should ideally give the same output, but do not. This also fails
> >> using purrr::pmap_dfr rather than tidytable. I am using R 4.2.2 and I
> >> am on
> >> Mac OS Ventura 13.1.
> >>
> >> Thank you for any help you can provide or general guidance.
> >>
> >>
> >> ==
> >> Michael Lachanski
> >> PhD Student in Demography and Sociology
> >> MA Candidate in Statistics
> >> University of Pennsylvania
> >> mikel...@sas.upenn.edu
> >>
> >> [[alternative HTML version deleted]]
> >>
> >> __
> >> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> >>
> https://urldefense.com/v3/__https://stat.ethz.ch/mailman/listinfo/r-help__;!!IBzWLUs!VdfzdJ15GLScUok_hiqL3DvTJ20Ce8JMBkQ1NosBfyOvu68iuQkh9nsPZuUBbB9BtrsZBh86OjGyyj3lAB2g_xXCvB6t$
> >> PLEASE do read the posting guide
> >>
> https://urldefense.com/v3/__http://www.R-project.org/posting-guide.html__;!!IBzWLUs!VdfzdJ15GLScUok_hiqL3DvTJ20Ce8JMBkQ1NosBfyOvu68iuQkh9nsPZuUBbB9BtrsZBh86OjGyyj3lAB2g_3rS2yQK$
> >> and provide commented, minimal, self-contained, reproducible code.
> > Hello,
> >
> > Use map_dfr instead of pmap_dfr.
> >
> >
> > library(data.table)
> > library(tidytable)
> >
> > minimal_failing_function <- function(A) {
> >DT <- data.table(A)
> >DT[ , A:= shift(A, fill = NA, type = "lag", n = 1)] %>% `[`
> >return(DT)
> > }
> >
> > # works
> > tidytable::map_dfr(.x = list(c(1,2)),
> > .f = minimal_failing_function)
> > #> # A tidytable

Re: [R] R Certification

2023-01-02 Thread Mukesh Ghanshyamdas Lekhrajani via R-help
Thanks John, 

 

Will surely do.

 

 

Thanks, Mukesh

9819285174

 

From: John Kane  
Sent: Monday, January 2, 2023 10:54 PM
To: mukesh.lekhraj...@yahoo.com
Cc: PIKAL Petr ; R-help Mailing List 

Subject: Re: [R] R Certification

 

Hi Mukesh,

 

Have a look at the blurb that prints at the start-up of R.


"R is free software and comes with ABSOLUTELY NO WARRANTY."

 

This is a hint that the R-Project is unlikely to be issuing certificates.  

 

 

On Mon, 2 Jan 2023 at 08:18, Mukesh Ghanshyamdas Lekhrajani via R-help 
mailto:r-help@r-project.org> > wrote:

Thanks Petr !

I will look at other training bodies as Coursera, or few others... but I was 
just wondering if there could be a  certificate from the "originators" itself, 
I mean an "R" certificate from "r-project" itself and that would carry more 
importance than external / unauthorized certificate bodies.

But, if you suggest there is no such certification provided by "r-project", 
then the only option for me is to search else where like - Coursera or few 
others.

I now have got my answers, but later the day - if ever "r-project" comes up 
with "R Language" certifications, do keep me informed.


Thanks, Mukesh
9819285174.


-Original Message-
From: PIKAL Petr mailto:petr.pi...@precheza.cz> > 
Sent: Monday, January 2, 2023 6:13 PM
To: mukesh.lekhraj...@yahoo.com  ; R-help 
Mailing List mailto:r-help@r-project.org> >
Subject: RE: [R] R Certification

Hallo Mukesh

R project is not Microsoft or Oracle AFAIK. But if you need some certificate 
you could take courses on Coursera, they are offering certificates.

Cheers
Petr

> -Original Message-
> From: R-help   > On Behalf Of Mukesh
> Ghanshyamdas Lekhrajani via R-help
> Sent: Monday, January 2, 2023 1:04 PM
> To: 'Jeff Newmiller'   >; 'Mukesh Ghanshyamdas
> Lekhrajani via R-help' mailto:r-help@r-project.org> >; 
> r-help@r-project.org  
> Subject: Re: [R] R Certification
> 
> Hello Jeff !
> 
> Yes, you are right.. and that’s why I am asking this question - just like 
> other
> governing bodies that issue certification on their respective technologies, 
> does
> "r-project.org  " also have a learning path ? and then 
> a certification.
> 
> Say - Microsoft issues certificate for C#, .Net, etc..
> Then, Oracle issues certificates for Java, DB etc..
> 
> These are authentic governing bodies for learning and issuing certificates
> 
> On exactly similar lines -  "r-project.org  " would 
> also be having some learning
> path and then let "r-project" take the proctored exam and issue a 
> certificate...
> 
> I am not looking at any external institute for certifying me on "R" - but, the
> governing body itself..
> 
> So, the question again is - "does r-project provide a learning path and issue
> certificate after taking exams"
> 
> Thanks, Mukesh
> 9819285174
> 
> 
> 
> -Original Message-
> From: Jeff Newmiller   >
> Sent: Monday, January 2, 2023 2:26 PM
> To: mukesh.lekhraj...@yahoo.com  ; Mukesh 
> Ghanshyamdas Lekhrajani via R-
> help mailto:r-help@r-project.org> >; 
> r-help@r-project.org  
> Subject: Re: [R] R Certification
> 
> I think this request is like saying "I want a unicorn." There are many
> organizations that will enter your name into a certificate form for a fee, 
> possibly
> with some credibility... but if they put "r-project.org 
>  " down as the name of the
> organization granting this "certificate" then you are probably getting fooled.
> 
> On December 30, 2022 8:33:09 AM PST, Mukesh Ghanshyamdas Lekhrajani via
> R-help mailto:r-help@r-project.org> > wrote:
> >Hello R Support Team,
> >
> >
> >
> >I want to do R certification, could you help me with the list of
> >certificates with their prices so it helps me to register.
> >
> >
> >
> >I want to do the certification directly from the governing body
> >"r-project.org  " and not from any 3rd party.
> >
> >
> >
> >Please help.
> >
> >
> >
> >
> >
> >
> >
> >Mukesh
> >
> >+91 9819285174
> >
> >
> > [[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.
> 
> --
> Sent from my phone. Please excuse my brevity.
> 
> __
> 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.o

Re: [R] R Certification

2023-01-02 Thread Spencer Graves
	  If you go to "https://cran.r-project.org"; and click, "Download R for 
macOS", you will find several versions that you can download and that 
have a "digital signature".



	  After downloading, you can "check the integrity of the downloaded 
package by checking the signature: pkgutil --check-signature R-4.2.2.pkg".



	  Beyond that, RStudio and other companies will happily sell you a 
maintenance contract, which will get you more polite answers than from a 
list serve like this ;-)



  Spencer Graves


On 1/2/23 11:24 AM, John Kane wrote:

Hi Mukesh,

Have a look at the blurb that prints at the start-up of R.

"R is free software and comes with ABSOLUTELY NO WARRANTY."

This is a hint that the R-Project is unlikely to be issuing certificates.



On Mon, 2 Jan 2023 at 08:18, Mukesh Ghanshyamdas Lekhrajani via R-help <
r-help@r-project.org> wrote:


Thanks Petr !

I will look at other training bodies as Coursera, or few others... but I
was just wondering if there could be a  certificate from the "originators"
itself, I mean an "R" certificate from "r-project" itself and that would
carry more importance than external / unauthorized certificate bodies.

But, if you suggest there is no such certification provided by
"r-project", then the only option for me is to search else where like -
Coursera or few others.

I now have got my answers, but later the day - if ever "r-project" comes
up with "R Language" certifications, do keep me informed.


Thanks, Mukesh
9819285174.


-Original Message-
From: PIKAL Petr 
Sent: Monday, January 2, 2023 6:13 PM
To: mukesh.lekhraj...@yahoo.com; R-help Mailing List 


Subject: RE: [R] R Certification

Hallo Mukesh

R project is not Microsoft or Oracle AFAIK. But if you need some
certificate you could take courses on Coursera, they are offering
certificates.

Cheers
Petr


-Original Message-
From: R-help  On Behalf Of Mukesh
Ghanshyamdas Lekhrajani via R-help
Sent: Monday, January 2, 2023 1:04 PM
To: 'Jeff Newmiller' ; 'Mukesh Ghanshyamdas
Lekhrajani via R-help' ; r-help@r-project.org
Subject: Re: [R] R Certification

Hello Jeff !

Yes, you are right.. and that’s why I am asking this question - just

like other

governing bodies that issue certification on their respective

technologies, does

"r-project.org" also have a learning path ? and then a certification.

Say - Microsoft issues certificate for C#, .Net, etc..
Then, Oracle issues certificates for Java, DB etc..

These are authentic governing bodies for learning and issuing

certificates


On exactly similar lines -  "r-project.org" would also be having some

learning

path and then let "r-project" take the proctored exam and issue a

certificate...


I am not looking at any external institute for certifying me on "R" -

but, the

governing body itself..

So, the question again is - "does r-project provide a learning path and

issue

certificate after taking exams"

Thanks, Mukesh
9819285174



-Original Message-
From: Jeff Newmiller 
Sent: Monday, January 2, 2023 2:26 PM
To: mukesh.lekhraj...@yahoo.com; Mukesh Ghanshyamdas Lekhrajani via R-
help ; r-help@r-project.org
Subject: Re: [R] R Certification

I think this request is like saying "I want a unicorn." There are many
organizations that will enter your name into a certificate form for a

fee, possibly

with some credibility... but if they put "r-project.org" down as the

name of the

organization granting this "certificate" then you are probably getting

fooled.


On December 30, 2022 8:33:09 AM PST, Mukesh Ghanshyamdas Lekhrajani via
R-help  wrote:

Hello R Support Team,



I want to do R certification, could you help me with the list of
certificates with their prices so it helps me to register.



I want to do the certification directly from the governing body
"r-project.org" and not from any 3rd party.



Please help.







Mukesh

+91 9819285174


 [[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.


--
Sent from my phone. Please excuse my brevity.

__
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 UNSUB

Re: [R] R Certification

2023-01-02 Thread John Kane
Hi Mukesh,

Have a look at the blurb that prints at the start-up of R.

"R is free software and comes with ABSOLUTELY NO WARRANTY."

This is a hint that the R-Project is unlikely to be issuing certificates.



On Mon, 2 Jan 2023 at 08:18, Mukesh Ghanshyamdas Lekhrajani via R-help <
r-help@r-project.org> wrote:

> Thanks Petr !
>
> I will look at other training bodies as Coursera, or few others... but I
> was just wondering if there could be a  certificate from the "originators"
> itself, I mean an "R" certificate from "r-project" itself and that would
> carry more importance than external / unauthorized certificate bodies.
>
> But, if you suggest there is no such certification provided by
> "r-project", then the only option for me is to search else where like -
> Coursera or few others.
>
> I now have got my answers, but later the day - if ever "r-project" comes
> up with "R Language" certifications, do keep me informed.
>
>
> Thanks, Mukesh
> 9819285174.
>
>
> -Original Message-
> From: PIKAL Petr 
> Sent: Monday, January 2, 2023 6:13 PM
> To: mukesh.lekhraj...@yahoo.com; R-help Mailing List  >
> Subject: RE: [R] R Certification
>
> Hallo Mukesh
>
> R project is not Microsoft or Oracle AFAIK. But if you need some
> certificate you could take courses on Coursera, they are offering
> certificates.
>
> Cheers
> Petr
>
> > -Original Message-
> > From: R-help  On Behalf Of Mukesh
> > Ghanshyamdas Lekhrajani via R-help
> > Sent: Monday, January 2, 2023 1:04 PM
> > To: 'Jeff Newmiller' ; 'Mukesh Ghanshyamdas
> > Lekhrajani via R-help' ; r-help@r-project.org
> > Subject: Re: [R] R Certification
> >
> > Hello Jeff !
> >
> > Yes, you are right.. and that’s why I am asking this question - just
> like other
> > governing bodies that issue certification on their respective
> technologies, does
> > "r-project.org" also have a learning path ? and then a certification.
> >
> > Say - Microsoft issues certificate for C#, .Net, etc..
> > Then, Oracle issues certificates for Java, DB etc..
> >
> > These are authentic governing bodies for learning and issuing
> certificates
> >
> > On exactly similar lines -  "r-project.org" would also be having some
> learning
> > path and then let "r-project" take the proctored exam and issue a
> certificate...
> >
> > I am not looking at any external institute for certifying me on "R" -
> but, the
> > governing body itself..
> >
> > So, the question again is - "does r-project provide a learning path and
> issue
> > certificate after taking exams"
> >
> > Thanks, Mukesh
> > 9819285174
> >
> >
> >
> > -Original Message-
> > From: Jeff Newmiller 
> > Sent: Monday, January 2, 2023 2:26 PM
> > To: mukesh.lekhraj...@yahoo.com; Mukesh Ghanshyamdas Lekhrajani via R-
> > help ; r-help@r-project.org
> > Subject: Re: [R] R Certification
> >
> > I think this request is like saying "I want a unicorn." There are many
> > organizations that will enter your name into a certificate form for a
> fee, possibly
> > with some credibility... but if they put "r-project.org" down as the
> name of the
> > organization granting this "certificate" then you are probably getting
> fooled.
> >
> > On December 30, 2022 8:33:09 AM PST, Mukesh Ghanshyamdas Lekhrajani via
> > R-help  wrote:
> > >Hello R Support Team,
> > >
> > >
> > >
> > >I want to do R certification, could you help me with the list of
> > >certificates with their prices so it helps me to register.
> > >
> > >
> > >
> > >I want to do the certification directly from the governing body
> > >"r-project.org" and not from any 3rd party.
> > >
> > >
> > >
> > >Please help.
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >Mukesh
> > >
> > >+91 9819285174
> > >
> > >
> > > [[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.
> >
> > --
> > Sent from my phone. Please excuse my brevity.
> >
> > __
> > 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.
>


-- 
John Kane
Kingston ON Canada

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat

[R] Stepmax in Neuralnet

2023-01-02 Thread Gábor Malomsoki
Dear all,

if i set the stepmax parameter higher then i increase the performance of
the neuralnet?
Would be my prediction more accurate?

thanks
Best regards
Gabor

[[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.


[R] R Certification

2023-01-02 Thread Mukesh Ghanshyamdas Lekhrajani via R-help
Thanks Petr !

I will look at other training bodies as Coursera, or few others... but I was 
just wondering if there could be a  certificate from the "originators" itself, 
I mean an "R" certificate from "r-project" itself and that would carry more 
importance than external / unauthorized certificate bodies.

But, if you suggest there is no such certification provided by "r-project", 
then the only option for me is to search else where like - Coursera or few 
others.

I now have got my answers, but later the day - if ever "r-project" comes up 
with "R Language" certifications, do keep me informed.


Thanks, Mukesh
9819285174.


-Original Message-
From: PIKAL Petr  
Sent: Monday, January 2, 2023 6:13 PM
To: mukesh.lekhraj...@yahoo.com; R-help Mailing List 
Subject: RE: [R] R Certification

Hallo Mukesh

R project is not Microsoft or Oracle AFAIK. But if you need some certificate 
you could take courses on Coursera, they are offering certificates.

Cheers
Petr

> -Original Message-
> From: R-help  On Behalf Of Mukesh
> Ghanshyamdas Lekhrajani via R-help
> Sent: Monday, January 2, 2023 1:04 PM
> To: 'Jeff Newmiller' ; 'Mukesh Ghanshyamdas
> Lekhrajani via R-help' ; r-help@r-project.org
> Subject: Re: [R] R Certification
> 
> Hello Jeff !
> 
> Yes, you are right.. and that’s why I am asking this question - just like 
> other
> governing bodies that issue certification on their respective technologies, 
> does
> "r-project.org" also have a learning path ? and then a certification.
> 
> Say - Microsoft issues certificate for C#, .Net, etc..
> Then, Oracle issues certificates for Java, DB etc..
> 
> These are authentic governing bodies for learning and issuing certificates
> 
> On exactly similar lines -  "r-project.org" would also be having some learning
> path and then let "r-project" take the proctored exam and issue a 
> certificate...
> 
> I am not looking at any external institute for certifying me on "R" - but, the
> governing body itself..
> 
> So, the question again is - "does r-project provide a learning path and issue
> certificate after taking exams"
> 
> Thanks, Mukesh
> 9819285174
> 
> 
> 
> -Original Message-
> From: Jeff Newmiller 
> Sent: Monday, January 2, 2023 2:26 PM
> To: mukesh.lekhraj...@yahoo.com; Mukesh Ghanshyamdas Lekhrajani via R-
> help ; r-help@r-project.org
> Subject: Re: [R] R Certification
> 
> I think this request is like saying "I want a unicorn." There are many
> organizations that will enter your name into a certificate form for a fee, 
> possibly
> with some credibility... but if they put "r-project.org" down as the name of 
> the
> organization granting this "certificate" then you are probably getting fooled.
> 
> On December 30, 2022 8:33:09 AM PST, Mukesh Ghanshyamdas Lekhrajani via
> R-help  wrote:
> >Hello R Support Team,
> >
> >
> >
> >I want to do R certification, could you help me with the list of
> >certificates with their prices so it helps me to register.
> >
> >
> >
> >I want to do the certification directly from the governing body
> >"r-project.org" and not from any 3rd party.
> >
> >
> >
> >Please help.
> >
> >
> >
> >
> >
> >
> >
> >Mukesh
> >
> >+91 9819285174
> >
> >
> > [[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.
> 
> --
> Sent from my phone. Please excuse my brevity.
> 
> __
> 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] R Certification

2023-01-02 Thread PIKAL Petr
Hallo Mukesh

R project is not Microsoft or Oracle AFAIK. But if you need some certificate 
you could take courses on Coursera, they are offering certificates.

Cheers
Petr

> -Original Message-
> From: R-help  On Behalf Of Mukesh
> Ghanshyamdas Lekhrajani via R-help
> Sent: Monday, January 2, 2023 1:04 PM
> To: 'Jeff Newmiller' ; 'Mukesh Ghanshyamdas
> Lekhrajani via R-help' ; r-help@r-project.org
> Subject: Re: [R] R Certification
> 
> Hello Jeff !
> 
> Yes, you are right.. and that’s why I am asking this question - just like 
> other
> governing bodies that issue certification on their respective technologies, 
> does
> "r-project.org" also have a learning path ? and then a certification.
> 
> Say - Microsoft issues certificate for C#, .Net, etc..
> Then, Oracle issues certificates for Java, DB etc..
> 
> These are authentic governing bodies for learning and issuing certificates
> 
> On exactly similar lines -  "r-project.org" would also be having some learning
> path and then let "r-project" take the proctored exam and issue a 
> certificate...
> 
> I am not looking at any external institute for certifying me on "R" - but, the
> governing body itself..
> 
> So, the question again is - "does r-project provide a learning path and issue
> certificate after taking exams"
> 
> Thanks, Mukesh
> 9819285174
> 
> 
> 
> -Original Message-
> From: Jeff Newmiller 
> Sent: Monday, January 2, 2023 2:26 PM
> To: mukesh.lekhraj...@yahoo.com; Mukesh Ghanshyamdas Lekhrajani via R-
> help ; r-help@r-project.org
> Subject: Re: [R] R Certification
> 
> I think this request is like saying "I want a unicorn." There are many
> organizations that will enter your name into a certificate form for a fee, 
> possibly
> with some credibility... but if they put "r-project.org" down as the name of 
> the
> organization granting this "certificate" then you are probably getting fooled.
> 
> On December 30, 2022 8:33:09 AM PST, Mukesh Ghanshyamdas Lekhrajani via
> R-help  wrote:
> >Hello R Support Team,
> >
> >
> >
> >I want to do R certification, could you help me with the list of
> >certificates with their prices so it helps me to register.
> >
> >
> >
> >I want to do the certification directly from the governing body
> >"r-project.org" and not from any 3rd party.
> >
> >
> >
> >Please help.
> >
> >
> >
> >
> >
> >
> >
> >Mukesh
> >
> >+91 9819285174
> >
> >
> > [[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.
> 
> --
> Sent from my phone. Please excuse my brevity.
> 
> __
> 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] R Certification

2023-01-02 Thread Mukesh Ghanshyamdas Lekhrajani via R-help
Hello Jeff !

Yes, you are right.. and that’s why I am asking this question - just like other 
governing bodies that issue certification on their respective technologies, 
does "r-project.org" also have a learning path ? and then a certification.

Say - Microsoft issues certificate for C#, .Net, etc..
Then, Oracle issues certificates for Java, DB etc..

These are authentic governing bodies for learning and issuing certificates 

On exactly similar lines -  "r-project.org" would also be having some learning 
path and then let "r-project" take the proctored exam and issue a certificate...

I am not looking at any external institute for certifying me on "R" - but, the 
governing body itself..

So, the question again is - "does r-project provide a learning path and issue 
certificate after taking exams"

Thanks, Mukesh
9819285174



-Original Message-
From: Jeff Newmiller  
Sent: Monday, January 2, 2023 2:26 PM
To: mukesh.lekhraj...@yahoo.com; Mukesh Ghanshyamdas Lekhrajani via R-help 
; r-help@r-project.org
Subject: Re: [R] R Certification

I think this request is like saying "I want a unicorn." There are many 
organizations that will enter your name into a certificate form for a fee, 
possibly with some credibility... but if they put "r-project.org" down as the 
name of the organization granting this "certificate" then you are probably 
getting fooled.

On December 30, 2022 8:33:09 AM PST, Mukesh Ghanshyamdas Lekhrajani via R-help 
 wrote:
>Hello R Support Team,
>
> 
>
>I want to do R certification, could you help me with the list of 
>certificates with their prices so it helps me to register.
>
> 
>
>I want to do the certification directly from the governing body 
>"r-project.org" and not from any 3rd party.
>
> 
>
>Please help.
>
> 
>
> 
>
> 
>
>Mukesh
>
>+91 9819285174
>
>
>   [[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.

--
Sent from my phone. Please excuse my brevity.

__
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] R Certification

2023-01-02 Thread Jeff Newmiller
I think this request is like saying "I want a unicorn." There are many 
organizations that will enter your name into a certificate form for a fee, 
possibly with some credibility... but if they put "r-project.org" down as the 
name of the organization granting this "certificate" then you are probably 
getting fooled.

On December 30, 2022 8:33:09 AM PST, Mukesh Ghanshyamdas Lekhrajani via R-help 
 wrote:
>Hello R Support Team,
>
> 
>
>I want to do R certification, could you help me with the list of
>certificates with their prices so it helps me to register.
>
> 
>
>I want to do the certification directly from the governing body
>"r-project.org" and not from any 3rd party.
>
> 
>
>Please help.
>
> 
>
> 
>
> 
>
>Mukesh
>
>+91 9819285174
>
>
>   [[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.

-- 
Sent from my phone. Please excuse my brevity.

__
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] R Certification

2023-01-02 Thread Mukesh Ghanshyamdas Lekhrajani via R-help
Hello R Support Team,

 

I want to do R certification, could you help me with the list of
certificates with their prices so it helps me to register.

 

I want to do the certification directly from the governing body
"r-project.org" and not from any 3rd party.

 

Please help.

 

 

 

Mukesh

+91 9819285174


[[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.