|
|
By admin, on July 13th, 2010
Follwing Example will create form in ms word file
**********************************************;
** example of creating sequential ID number **;
** and cover page for data collection form **;
**********************************************;
option nodate nonumber nocenter ls=78 ps=180;
data _null_;* start data step-no file created;
file ‘x:\abc\froms.doc’;* names file to store results;
do cri_id = 1 to 11;* creates forms 1 to 11;
put _page_; * . . . → Read More: Creating froms by PUT statement
By admin, on July 5th, 2010
The following code will change old version to new version of SAS datasets.
LIBNAME OLDS V612 ‘C:\OSAS’; /* Old uses v612 engine, .sd2 format */
LIBNAME NEWS V8 ‘C:\NSAS’; /* New v8 engine, .sas7bdat */
DATA NEWS.DS1;
SET OLDS.DS1;
RUN;
Both directory should be different ,otherwise it will show “Data . . . → Read More: How to change old version to new version of SAS datasets ?
By admin, on July 5th, 2010
SAS represents data in tabular or rectangular form, where each column represents a field or variable, which must be named, and each row represents a record or observation. Observations are numbered sequentially. When data is sorted on some field, such as age, the observations will be renumbered sequentially after sorting. The observation number is not stored . . . → Read More: How SAS Represents Data ?
By admin, on June 25th, 2010
There are so many ways to create sas datasets.Following are few of them.
DATALINES Statement
By using DATALINES statement with INPUT statement we can create dataset as follow.
data fifa;
input name $ team $;
datalines;
Donover USA
Ronaldo Brazil
;
* You can use DATALINES statement only when your data does not contain any semicolons ‘;’.
CARDS Statements
Following is the . . . → Read More: Create SAS Datasets
By admin, on June 25th, 2010
Infile Statement opens a file for input.
Following is syntax.
INFILE operand {options};
Here operand is filename or filepath.
Where option could be LENGTH,REFCFM,FLOWOVER,MISSOVER or STOPOVER
Following is the example of INFILE . . . → Read More: INFILE Statement
By admin, on June 7th, 2010
6: The authors are not writing for specific people or for a specific,targeted audience.
You have to remember that in traditional marketing and sales, products are put on the market which the expectation that there always is a market for something (we call that “push-marketing”). However, we now know differently. There is so much out there, that . . . → Read More: The 8 best ways to lose money with eBooks…part 3
By admin, on June 7th, 2010
4: Many people follow the sheep.
One of the most surprising experiences on the Web relate to the ‘follow the herd behaviour’ of many people. Often people show such behaviour also, because they want to copy the “winning formulas” of gurus. Because somebody told them do to so.
Now successful entrepreneurs actually do something a bit different. The . . . → Read More: The 8 best ways to lose money with eBooks…part 2
By admin, on June 7th, 2010
Earning money with your own knowledge and experiences by exchanging digital products in the form of eBooks, eCourses and other eContent is still the hottest thing going on on the Web in the U.S. and in an increasing part of the World. That is next to software and the porn industry of course. This is true . . . → Read More: The 8 best ways to lose money with eBooks…part 1
By admin, on June 7th, 2010
Well, when we were preparing new workshops and books on eCommerce and eBusiness, we decided to see what was going on on the Net with small business owners and people trying to earn a living from home.
We ‘crossed over’ to the consumer and home-business world of the Internet. And we were flabbergasted by the degree of . . . → Read More: So why are you writing eBooks for other people then?
By admin, on June 7th, 2010
Hi Friends. When I told some of my friends that I was going to write this book, they all told me I was crazy. “Why waste your time on writing eBooks when you earn $200 per hour with workshops etc”?
The answer is easy: I am one of the people that think that money is not everything . . . → Read More: How to lose money with eBooks ?
|
|
Recent Comments