Hi Friends would you like to know more about SAS then attend SAS Free Demo Sunday ( March 30 th ) @ 11:30 AM Address: Signetsoft , #1615, 5th Main, AECS Layout, Kundanahalli, Banglore-560 037 Contact : 98 4455 9330 www.Signetsoft.com
Posts
Showing posts from March, 2014
Urgent Requirment in WNS for - Analyst/ Sr Analyst
- Get link
- X
- Other Apps
By
Unknown
-
Job Responsibilities: Consistently meet SLA standards for timeliness and accuracy for all client deliverables Regular Client interaction and co-ordination with various stakeholders Ability to anticipate process changes, client expectations and deliver accordingly Understand client brief for various projects on Multi-coalition campaign management & analysis, design analysis methodology, derive insights, deliver output in requested format and provide recommendations Competency- Skills & Knowledge/ Values and Behaviors: B.Tech/B.E/B.stats/MBA . with hands on experience in loyalty marketing and Campaign Management processes Hands on analytical tools like SAS and/or SQL. Familiarity with basic statistics would be preferred. Experience of working on B2B and B2C customer data is preferred Experience of UNICA and BI tools is preferred. Contact Company : WNS Email Address : ...
Urgent Requirement for SAS programmers ( Exp.: Freshers)
- Get link
- X
- Other Apps
By
Unknown
-
A quick tour of SAS operators
- Get link
- X
- Other Apps
By
Unknown
-
I want to understand the logic behind the answer to the following question: The following DATA step is submitted: data one; x=3; y=2; z=x**y; run ; What should be the value of the variable z in the output data set? Will you please explain what the ** symbol means, and how we solve the question? -Too Many Asterisks It is not intuitive that the ** symbol means exponentiation, as in X to the Yth power. There are several arithmetic, comparison, and logical SAS operators (symbols), as well as miscellaneous operators for use in SAS functions and for grouping. Let’s take a quick tour. Arithmetic Operators Symbol Definition Example Result ** exponentiation a**3 raise A to the third power * multiplication 1 2*y multiply 2 by the value of Y / division var/5 divide the value of VAR by 5 + addition num+3 add 3 to the value of NUM - subtraction sale-discount subtract the value of DISCOUNT from the value of SALE 1 The asterisk (*) is always necessary...