Base SAS Missover | Truncover | Flowover | Stopover | Scanover | Pad

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ธ.ค. 2024

ความคิดเห็น • 8

  • @saanvimedia1325
    @saanvimedia1325 2 ปีที่แล้ว +1

    Both perform the same function with LIST input. but with COLUMN (or FORMATTED) input,
    TRUNCOVER will allow you to read partial values from short records, but MISSOVER does not

  • @bluecool28
    @bluecool28 4 ปีที่แล้ว +1

    Hi, does anyone know if it possible to use infile truncover with input format data? Because my missing data has "," and "." in it

  • @samuelvaraprasad1172
    @samuelvaraprasad1172 6 ปีที่แล้ว +1

    Sir, could you please explain creating a libname in Sas university edition thank you

    • @analyticsschool
      @analyticsschool  6 ปีที่แล้ว

      Hi Samuel, Please watch Session 3. There I have explained about libname statement in SAS University Edition. Even then you have any confusion then let me know.

  • @sibanandaroutray6900
    @sibanandaroutray6900 2 ปีที่แล้ว +1

    can you share raw data

    • @analyticsschool
      @analyticsschool  2 ปีที่แล้ว

      Hi Sibananda, the data that I had used is the dummy data and I prepared this video long time back. I am sorry, I don't have this data at the moment.

  • @ajaykushwaha-je6mw
    @ajaykushwaha-je6mw 6 ปีที่แล้ว

    I have data set with two variable
    Uttar Pradesh
    Tamil Nadu
    Delhi
    Rajasthan
    Gujrat
    Madhya Pradesh
    code using missover:
    data missing6;
    infile '/folders/myfolders/missingname.txt' missover;
    input Name$ lastname$;
    run;
    is perfectly working on them.
    In your ivdeo your code is not giving the desired output . why ?

    • @analyticsschool
      @analyticsschool  6 ปีที่แล้ว

      Hi Ajay, the concept of missover is, When the MISSOVER option is used on the INFILE statement, the INPUT statement does not jump to the next line when reading a short line. Instead, MISSOVER sets variables to missing. Hope this helps.