SAS Formats (PROC FORMAT): SAS for Beginners (Lesson 11)

Поділитися
Вставка
  • Опубліковано 9 лис 2024

КОМЕНТАРІ • 21

  • @JoshuaGroveWrites
    @JoshuaGroveWrites Рік тому +5

    I am a doctoral student and I have been using STATA for the last few years. I was accepted into a special restricted data workshop and had just a weekend to learn SAS. I tried a few different tutorials, including the one in the SAS program. NOTHING worked...until I found your channel. YOU ARE AMAZING. Thank you for helping me get thru a crash course in SAS! I was able to do the data analysis AND keep up with the class even though I had never used SAS until three days before it began. (I also watched your 2 hour tutorial...great job!)
    Thank you so much! 😃

    • @learningwithjelly
      @learningwithjelly  Рік тому +1

      Omg thanks so much for the kind words. So so glad I could help you with the class!

  • @toto.toto8974
    @toto.toto8974 9 місяців тому

    Thank you so much Jelly!! As always great explanation!! :)

  • @qinghuafeng1705
    @qinghuafeng1705 Рік тому

    Jelly, you did a great job!

  • @malcorub
    @malcorub 7 місяців тому

    Great video! So this is sort of like creating LOOKUP TABLES in a database or DIMENSIONS in a data warehouse?

    • @learningwithjelly
      @learningwithjelly  7 місяців тому

      Thank you. You can think of it as lookup tables great observation

  • @rezarezaeijami6486
    @rezarezaeijami6486 2 роки тому

    very good tutorial👌

  • @mariemargaryan1995
    @mariemargaryan1995 Рік тому

    Dear Jelly, could you please also explain difference between Value and InValue ?

    • @learningwithjelly
      @learningwithjelly  Рік тому +2

      Hi Mari, yes value creates a format on how the variable looks in the output and invalue is an informat on how you need to read in the variable if it is unstructured. Dates need an invalue to read them in and a format to make it readable in the output.

  • @roxanazaslavsky1613
    @roxanazaslavsky1613 2 роки тому +1

    If you want to export using proc expor, is still keep the format ?

    • @learningwithjelly
      @learningwithjelly  2 роки тому

      Yes if you export the output the format should carry over.

  • @bryanaaron5240
    @bryanaaron5240 2 роки тому

    Do you need a $ with the put statement? I have seen that this is not always necessary...

    • @learningwithjelly
      @learningwithjelly  2 роки тому

      The $ just signifies its a character variable. No you don't have to have it just good practice.

  • @dhanasekaranl
    @dhanasekaranl 2 роки тому

    How do I create a permanent format library in sas?

    • @learningwithjelly
      @learningwithjelly  2 роки тому

      Thanks for watching I recommend googling your questions and visiting the sas documentation site: documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/proc/p1upn25lbfo6mkn1wncu4dyh9q91.htm

  • @prashanthjaila3412
    @prashanthjaila3412 2 роки тому

    Mam
    I have a task for you
    If i have a space between the observations in the unaligned data,
    Example :-
    Data start ;
    Input id name$ age ;
    Cards;
    101 Jhon abraham 34
    102 Mathew wade 38
    103 Jhon cena 42
    104 Ellen 45
    Run;
    Proc print data = start ;
    Run ;
    Which type of input method or format you use ?

    • @learningwithjelly
      @learningwithjelly  2 роки тому +1

      You can change your input statement to be
      Input ID firstname $ lastname $ age;
      since you have first and last name you need to specify that in the input statements (for those who do not have a last name it should still work)
      Hope that helps

    • @prashanthjaila3412
      @prashanthjaila3412 2 роки тому

      @@learningwithjelly Thank you Mam , i got it