BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jessica_hale
Calcite | Level 5

I started using SASPy with SAS University Edition in the Jupyter editor. I was working on some examples and wanted to show how one could toggle between having the "teach me SAS" mode on vs. off. Unfortunately, I have been able to turn it on, but not off. According to references, sas.teach_me_SAS('true') turns the mode on - which it does - and sas.teach_me_SAS('false') is supposed to turn it off - which it doesn't. I'm not sure if I am missing something, but I am puzzled as to the issue. 

 

Thank you for any help! 

1 ACCEPTED SOLUTION

Accepted Solutions
Jared
SAS Employee

@jessica_hale The teach_me_SAS method is using the python boolean `True` and `False` to turn it on and off. Python is case-sensitive and the option should not be included inside quotes.

 

Here is a screen shot of the option being turned on and off.

 

Screen Shot 2018-03-16 at 8.15.29 AM.png

View solution in original post

6 REPLIES 6
ChrisHemedinger
Community Manager

Hi @jessica_hale - I've checked and I see the same behavior.  I'll ping @Jared (main developer for SASPy) and see if he might have an answer.

Learn from the Experts! Check out the huge catalog of free sessions in the Ask the Expert webinar series.
Jared
SAS Employee

@jessica_hale The teach_me_SAS method is using the python boolean `True` and `False` to turn it on and off. Python is case-sensitive and the option should not be included inside quotes.

 

Here is a screen shot of the option being turned on and off.

 

Screen Shot 2018-03-16 at 8.15.29 AM.png

ChrisHemedinger
Community Manager

Ha! Confusion was partly my fault, as I showed this example on my blog post.  I used the 'true' value which, in Python, must evaluate to True as a conditional.  Unfortunately, 'false' probably also evaluates to True.  I've fixed my code example and screen shot, and I've learned something new from @Jared (not unusual for me).

Learn from the Experts! Check out the huge catalog of free sessions in the Ask the Expert webinar series.
jessica_hale
Calcite | Level 5

Thank you @Jared! I keep forgetting that Python syntax is case sensitive.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 6 replies
  • 1737 views
  • 1 like
  • 3 in conversation