Главная » Все файлы » Просмотр файлов из архивов » PDF-файлы » SAS OnDemand for Academics. Student user_s Guide. Third Edition (2013)

SAS OnDemand for Academics. Student user_s Guide. Third Edition (2013) (SAS OnDemand for Academics. Student user_s Guide. Third Edition (2013).pdf), страница 5

PDF-файл SAS OnDemand for Academics. Student user_s Guide. Third Edition (2013) (SAS OnDemand for Academics. Student user_s Guide. Third Edition (2013).pdf), страница 5 (ППП СОиАД) (SAS) Пакеты прикладных программ для статистической обработки и анализа данных (63177): Книга - 10 семестр (2 семестр магистратуры)SAS OnDemand for Academics. Student user_s Guide. Third Edition (2013) (SAS OnDemand for Academics. Student user_s Guide. Third Edition (2013).pdf) -2020-08-25СтудИзба

Описание файла

PDF-файл из архива "SAS OnDemand for Academics. Student user_s Guide. Third Edition (2013).pdf", который расположен в категории "". Всё это находится в предмете "(ппп соиад) (sas) пакеты прикладных программ для статистической обработки и анализа данных" из 10 семестр (2 семестр магистратуры), которые можно найти в файловом архиве МГУ им. Ломоносова. Не смотря на прямую связь этого архива с МГУ им. Ломоносова, его также можно найти и в других разделах. .

Просмотр PDF-файла онлайн

Текст 5 страницы из PDF

Inaddition, if course files and SAS data sets have been uploaded to the SAS server, thenyou can access these SAS data sets as well. To access the SAS data sets:Start SAS OnDemand for Academics: Enterprise Guide and log on.Select File  Open  Data.Select Servers.Double click SAS Apps.Double click Libraries.Double click the appropriate library (such as MAPS, SASHELP, or the library thatyou have assigned using a LIBNAME statement).Double click the SAS data set that you want to use.Note: If you modify a SAS data set that exists on the SAS server and you want to savethat SAS data set, then you must download the data set to a local drive. If you do not,then your modifications are lost when you end your session.In addition, some of the SAS data sets that are available from the SAS server might betoo large to download locally unless you have modified them to make them smaller.

In12 Step 4. Review the Basics for Working with Data and ResultsChapter 2this case, it is recommended that you work with the original SAS data sets only whileconnected to the SAS server.Accessing Grayed-out SAS Libraries from the SAS ServerThe SAS server includes sample SAS data sets that you might choose to use. Some ofthe sample SAS libraries might appear to be grayed out, but they are still available foruse.Typically, grayed-out SAS libraries appear for users in Europe and were originallyintended for use with another SAS software application, such as SAS Enterprise Miner.Start SAS OnDemand for Academics: Enterprise Guide and log on.Select File  Open  Data.Select Servers.Double click SAS Apps.Double click Libraries.Right-click on the grayed-out SAS library that you would like to access and thenclick Assign.Double click the SAS data set that you want to use.Uploading Data Files to the SAS Server versus Opening SAS DataSetsIf you have access to a local SAS data set, then you can choose File  Open  Data andselect the appropriate SAS data set.

However, this is not the preferred method. Instead,it is best practice to upload the SAS data set to the SAS server. This improves datatransfer speed and ensures that the step is recorded as part of your project.Working with Data Files Other Than SAS Data SetsIf you want to work with data other than SAS data sets (such as comma delimited filesor text files), then you can import the files in to SAS OnDemand for Academics:Enterprise Guide. To import files that are not SAS data sets:Select File  Import Data.Select Local Computer.Find and select the data file that you want to use.Working with Compressed SAS Data SetsSAS does not recommend that you work with compressed SAS data sets when using SASOnDemand for Academics: Enterprise Guide.

If you have a compressed SAS data set,then you can use the COMPRESS=NO option to remove compression.Assigning LIBNAME and FILENAME StatementsThe SAS server is unable to recognize or access the local drives of your PC. Therefore, ifyour SAS program includes a LIBNAME or FILENAME statement that refers to a localpath (such as a location on your C: drive), then you receive processing errors.Instructors have the ability to store SAS data sets and other data files on the SASserver. If your instructor has taken advantage of this feature, then you receive either aSAS OnDemand for Academics: Enterprise GuideStep 4. Review the Basics for Working with Data and Results 13LIBNAME statement or a FILENAME statement from your instructor that you can useto access the appropriate data.Note: LIBNAME or FILENAME statements are case sensitive.

Copy them or enterthem in exactly as they are shown to avoid permissions errors.If you do have local SAS data sets that you want to use, then it is recommended that youupload them. You can then refer to the uploaded SAS data sets in your code or in yourprojects. In addition, if you modify the SAS data sets that you upload and you want touse them again, then you should download the SAS data sets from the SAS server priorto exiting SAS OnDemand for Academics.Accessing Data with LIBNAME or FILENAME StatementsOnce a SAS data set or a data file has been uploaded to the SAS server, users can accessthe data using the appropriate LIBNAME or a FILENAME statement. The LIBNAMEor FILENAME statement to use is provided to you during the course registrationprocess.

To access this information at any time:Log on to your SAS OnDemand for Academics Home Page.Start SAS OnDemand for Academics: Enterprise Guide.Create or open a SAS program.Assign the LIBNAME or FILENAME statement in your code in order to accessyour data. Remember LIBNAME and FILENAME statements are case sensitive.Working with INFILE StatementsAn INFILE statement identifies an external data file to read with an INPUT statement.If you plan to use an INFILE statement or are asked to use an INFILE statement toaccess data, then you must use a fully qualified path in your statement.For example, if country.dat exists in a course directory called/courses/u_0/i_123/c_105, then the INFILE statement to access this data filewould be:infile '/courses/u_0/i_123/c_105/country.dat';However, if you specified a path that is not fully qualified (such as the following), thenan error would be produced:infile 'country.dat';Students must use the INFILE statement (with the fully qualified path) that yourinstructor provides.Working with INFILE Statements and Microsoft Windows Data FilesIf you import or upload a raw data file (such as a text file or a comma-separated-valuefile) from a PC using the Microsoft Windows operating system, then the file mightcontain carriage-return characters.

These carriage-return characters cause errors whenyou attempt to read the file on the UNIX version of SAS used by SAS OnDemand forAcademics servers.For example, using the following INFILE statement could cause data processing or datadisplay errors:infile newemps dlm=',';These errors can be avoided by using the following INFILE statement:14 Step 4. Review the Basics for Working with Data and ResultsChapter 2infile newemps dlm=',' TERMSTR=CRLF;For more information about the TERMSTR option, search for TERMSTR in SAS 9.3Online Documentation at http://support.sas.com/documentation.Saving WorkSAS OnDemand for Academics: Enterprise Guide is unable to store your work on theSAS server (the SAS Cloud).

Instead, you must save any work (SAS Enterprise Guideprojects, SAS files, output files, and so on) to a hard disk drive that you can accessbefore ending your session.To save any work within SAS OnDemand for Academics: Enterprise Guide, start byselecting one of the following options:To save a file, choose File  Save or File  Save As.To save a project, choose File  Save Project or File  Save Project As.Working with ResultsWith SAS OnDemand for Academics: Enterprise Guide, you have the ability to select thetype of result format that you want to produce.

By default, the result format is set toHTML.Working with the PDF Result FormatIf you choose to use the PDF result format, then certain graphics appear distortedunless you also change the default graph format to GIF or JPEG.To use the PDF result format and ensure that graphs render appropriately:Open SAS OnDemand for Academics: Enterprise Guide.Select Tools  Options.From the left side of the screen, select Results General from the tree.Select PDF.From the left side of the screen, select Graph from the tree.From the Graph Format menu, select GIF or JPEG.Result Formats and Associated Graph FormatsThe default graph format is ActiveX, which typically provides the best results for HTMLand SAS Report result formats.

If you need to use a result format such as PDF, whichdoes not support interactive graphics types, then you will also need to change the graphformat to a static device type such as GIF or JPEG. The following table references resultformats and the graph formats that each supports:Result FormatSupported Graph FormatsHTMLActiveX, Java, GIF, JPEG, SAS EMFSAS ReportActiveX, GIF, JPEGPDFGIF, JPEG, SAS EMFRTFActiveX, GIF, JPEG, SAS EMFText (Listing)NoneSAS OnDemand for Academics: Enterprise GuideStep 5.

Finding Help for Common Problems 15Step 5. Finding Help for Common ProblemsCheck the “Commonly Asked Questions: SAS OnDemand for Academics: EnterpriseGuide” on page 15 and follow the procedures below for additional help.Where Can Students Find Help?Students should be asked to follow the steps below to resolve any support issues thatthey encounter:Step 1. Review Commonly Asked Questions, SAS Notes, and SASDocumentationUse the key word “ondemand academics” to search for issues specific to SAS OnDemandfor Academics from these sources:“Commonly Asked Questions: SAS OnDemand for Academics: Enterprise Guide”on page 15SAS Notes, a database of common technical issues found athttp://support.sas.com/notesSAS Product Documentation at http://support.sas.com/documentationStep 2.

Contact Your InstructorIf you are a student and you have questions about using SAS OnDemand for Academics,then contact your instructor. Instructors can point students toward educationalresources and help ensure that offerings are used correctly.If further assistance is needed, then your instructor can contact SAS Technical Support.Commonly Asked Questions: SAS OnDemand for Academics:Enterprise GuideDoes SAS OnDemand for Academics: Enterprise Guide have all the same featuresas SAS Enterprise Guide?Certain features of SAS OnDemand for Academics: Enterprise Guide have beendisabled because they are not practical in this setting. For example, the ability toschedule projects is not available. Note that the online Help system documents allSAS Enterprise Guide features, including those that might be unavailable in thisoffering.Can I download SAS OnDemand for Academics clients on to more than onemachine?Yes.

For example, you might download a client on to a personal computer at homeas well as a laptop if you use both machines to complete assignments.I am using the keyboard to install SAS OnDemand for Academics: EnterpriseGuide. How do I change focus on the initial installation window?When the initial installation window is displayed, the focus is on Step 1: VerifySystem Requirements. To select this option, press Enter.After Step 1 has completed, you must press Tab to move focus to Step 2(Install SAS Enterprise Guide).16 Step 5. Finding Help for Common ProblemsChapter 2After you have moved the focus to Step 2, press Enter to begin the SASEnterprise Guide installation process.I have installed SAS OnDemand for Academics: Enterprise Guide, but I am notprompted to log on to it when I start the application.

What should I do?Make sure that you ran the System Requirements Wizard during installation.When you start the process of installing SAS OnDemand for Academics:Enterprise Guide, an initial installation window provides you with two choices:Verify system requirements.Install SAS Enterprise Guide.If you did not perform Step 1 (verify system requirements), then Microsoft .NET1.1 is not installed and will likely cause the error that you are experiencing.To correct the situation, start the setup.exe file that you downloaded from the SASDownload Manager. When the installation window is displayed, choose Step 1.After the System Requirements Wizard runs and installs Microsoft .NET 1.1 onyour machine, you should be able to use SAS OnDemand for Academics:Enterprise Guide.Note: If Microsoft .NET 1.1 stops responding during the installation process,then follow the instructions in SAS Note 16884 at http://support.sas.com/notes/.For more information and possible answers to your issue, review the followingSAS Usage Notes:SAS Note 34715SAS Note 20939SAS Note 20437How do I log on to SAS OnDemand for Academics: Enterprise Guide?When you open SAS OnDemand for Academics: Enterprise Guide, the CredentialsRequired window is displayed:You must use this window to log on to the SAS server (the SAS MetadataRepository) so that you can perform SAS processing.SAS OnDemand for Academics: Enterprise GuideStep 5.

Свежие статьи
Популярно сейчас
Как Вы думаете, сколько людей до Вас делали точно такое же задание? 99% студентов выполняют точно такие же задания, как и их предшественники год назад. Найдите нужный учебный материал на СтудИзбе!
Ответы на популярные вопросы
Да! Наши авторы собирают и выкладывают те работы, которые сдаются в Вашем учебном заведении ежегодно и уже проверены преподавателями.
Да! У нас любой человек может выложить любую учебную работу и зарабатывать на её продажах! Но каждый учебный материал публикуется только после тщательной проверки администрацией.
Вернём деньги! А если быть более точными, то автору даётся немного времени на исправление, а если не исправит или выйдет время, то вернём деньги в полном объёме!
Да! На равне с готовыми студенческими работами у нас продаются услуги. Цены на услуги видны сразу, то есть Вам нужно только указать параметры и сразу можно оплачивать.
Отзывы студентов
Ставлю 10/10
Все нравится, очень удобный сайт, помогает в учебе. Кроме этого, можно заработать самому, выставляя готовые учебные материалы на продажу здесь. Рейтинги и отзывы на преподавателей очень помогают сориентироваться в начале нового семестра. Спасибо за такую функцию. Ставлю максимальную оценку.
Лучшая платформа для успешной сдачи сессии
Познакомился со СтудИзбой благодаря своему другу, очень нравится интерфейс, количество доступных файлов, цена, в общем, все прекрасно. Даже сам продаю какие-то свои работы.
Студизба ван лав ❤
Очень офигенный сайт для студентов. Много полезных учебных материалов. Пользуюсь студизбой с октября 2021 года. Серьёзных нареканий нет. Хотелось бы, что бы ввели подписочную модель и сделали материалы дешевле 300 рублей в рамках подписки бесплатными.
Отличный сайт
Лично меня всё устраивает - и покупка, и продажа; и цены, и возможность предпросмотра куска файла, и обилие бесплатных файлов (в подборках по авторам, читай, ВУЗам и факультетам). Есть определённые баги, но всё решаемо, да и администраторы реагируют в течение суток.
Маленький отзыв о большом помощнике!
Студизба спасает в те моменты, когда сроки горят, а работ накопилось достаточно. Довольно удобный сайт с простой навигацией и огромным количеством материалов.
Студ. Изба как крупнейший сборник работ для студентов
Тут дофига бывает всего полезного. Печально, что бывают предметы по которым даже одного бесплатного решения нет, но это скорее вопрос к студентам. В остальном всё здорово.
Спасательный островок
Если уже не успеваешь разобраться или застрял на каком-то задание поможет тебе быстро и недорого решить твою проблему.
Всё и так отлично
Всё очень удобно. Особенно круто, что есть система бонусов и можно выводить остатки денег. Очень много качественных бесплатных файлов.
Отзыв о системе "Студизба"
Отличная платформа для распространения работ, востребованных студентами. Хорошо налаженная и качественная работа сайта, огромная база заданий и аудитория.
Отличный помощник
Отличный сайт с кучей полезных файлов, позволяющий найти много методичек / учебников / отзывов о вузах и преподователях.
Отлично помогает студентам в любой момент для решения трудных и незамедлительных задач
Хотелось бы больше конкретной информации о преподавателях. А так в принципе хороший сайт, всегда им пользуюсь и ни разу не было желания прекратить. Хороший сайт для помощи студентам, удобный и приятный интерфейс. Из недостатков можно выделить только отсутствия небольшого количества файлов.
Спасибо за шикарный сайт
Великолепный сайт на котором студент за не большие деньги может найти помощь с дз, проектами курсовыми, лабораторными, а также узнать отзывы на преподавателей и бесплатно скачать пособия.
Популярные преподаватели
Добавляйте материалы
и зарабатывайте!
Продажи идут автоматически
5173
Авторов
на СтудИзбе
437
Средний доход
с одного платного файла
Обучение Подробнее