We are currently looking for a Part Time Data Scientist.
If you’re able to follow the code, you might be the person we are looking for!
%MACRO LookingForPartTimeDataScientis t;
%LET lastno=8822;
DATA optimalCandidate;
RETAIN Critmet 0;
SET YourSkills; /* Your Data To Be Read In */
IF YouHaveStudiedStatistics=”>3 years” THEN Critmet+1;
IF YouKnowSAS=”Y” OR YouKnowR=”Y” OR YouKnowPython=”Y” THEN Critmet+1;
IF YouKnowBasicsOfDataManagement= “Y” THEN Critmet+1;
IF FluencyInEnglish=”Y” THEN Critmet+1;
IF YouEnjoyToWorkWithPeople=”Y” THEN Critmet+1;
IF YouHaveGoodInterpersonalSkills =”Y” THEN Critmet+1;
IF YouAreInnovativeAndLikeChallen ges=”Y” THEN Critmet+1;
IF Critmet > 4 THEN GoodFor=”jobs”;
CALL SYMPUT (‘criterias’, Critmet);
CALL SYMPUT (‘urlend’, compress(GoodFor));
RUN;
PROC IML;
SUBMIT/R;
YouAreInterestedIn <- c(“ToLearnNewThings”,” Statistics”,”Data Visualization”,”Big Data”,”Machine Learning”,” ToSolveBusinessProblems”,”Data Mining”,”ETL”,”Fraud Detection”)
ENDRSUBMIT;
QUIT;
DATA MoreInformation_DatoilOy;
LENGTH WeAreOffering url moreInfo sendYourApplications $2000.;
WeAreOffering =”We know that we are just as successful as you are. We have a culture where we are converting our passion into action. You have the power to make quick decisions and you can react fast to changes. The challenge of meaningful work – we are offering opportunities to develop world-class skills and an international career + competitive compensation you would expect from the company which is drilling for the new oil. Data is The New Oil.”;
url =”https://datoil.com/&urlend./“ ;
moreInfo =”COO, Jari Ahvenainen, 050 522 &lastno.”;
sendYourApplications=”[email protected]”; /* Send applications by 4th of October*/
RUN;
%MEND;