Following prerequisites and setup must be complete for successful completion of the exercise:

Size: px
Start display at page:

Download "Following prerequisites and setup must be complete for successful completion of the exercise:"

Transcription

1

2 Cntents Lab Prerequisites... 3 Dcument Structure... 4 Overview... 5 Intrductin... 5 Data Set... 5 What Is R?... 6 What Is R? Installing R... 6 What Is R? Installing RStudi... 7 What Is R? Basic Syntax... 8 What Is R? Data Frames What Is R? Creating Visauls in R (Part 1) What Is R? Creating Visuals in R (Part 2) Utilizing R in PwerBI Utilizing R in PwerBI Using What we Learned in R Studi Cnclusin: Cnclusin: Questins P a g e

3 Lab Prerequisites Fllwing prerequisites and setup must be cmplete fr successful cmpletin f the exercise: Yu must have an internet cnnectin. Signup fr Pwer BI: G t and sign up fr Pwer BI with a business address. If yu cannt sign up fr Pwer BI, let the instructr knw. If yu have an existing accunt, please g t and Sign in using yur Pwer BI Accunt. At minimum, a cmputer with 2-cres and 4GB RAM running ne f the fllwing versin f Windws: Windws 10, Windws 7, Windws 8 (64-bit preferred), Windws 8.1, Windws Server 2008 R2, Windws Server 2012, Windws Server 2012 R2. Micrsft Pwer BI Desktp requires Internet Explrer 9 r greater. Verify if yu have 32-bit r 64-bit perating system t decide if yu need t install the 32-bit r 64- bit applicatins. Search fr cmputer n yur PC, right click prperties fr yur cmputer. Yu will be able t identify if yur perating system is 64 r 32 bit based n system type as shwn belw. Dwnlad all ur sessin cntent here: Training-Pack Dwnlad and install Pwer BI Desktp using any ne f the ptins listed belw: If yu have Windws 10, use Micrsft App Stre t dwnlad and install Pwer BI Desktp app. Dwnlad and install Micrsft Pwer BI Desktp frm us/dwnlad/details.aspx?id= P a g e

4 Dcument Structure This dcument has tw main sectins: What is R?: This sectin is an intrductin t R: It ges thrugh sme examples f basic syntax, and building visuals in R. This in n way is a cmprehensive curse in R, but it will prvide yu with the mindset needed t g ut and explre n yur wn. Utilizing R Within Pwer BI : This sectin cvers hw t use R in PwerBI: This includes key tips and tricks, and general philsphy f hw t develp R Scripts in PwerBI. In the prcess here we g thrugh the prcess f implementing ur visual we created in RStudi within PwerBI, and then utilize R t add a bit mre value t ur visual. Thrughut this dcument yu will find all steps in a table n the left side. On the right will be screenshts r images t aid in fllwing alng. 4 P a g e

5 Overview Intrductin Tday we will be learning and explring the pwer that R adds t PwerBI. The challenge with this tpic is that, while R can be very simple and intuitive, there is s much that it can d that it can be very verwhelming. Additinally, many f the basics that R prvides can be dne slely with PwerBI. This causes a tricky dichtmy in which the easy stuff is t simple, but the useful stuff is t cmplicated. The gal f this wrk bk is t intrduce t yu the basics f R and examine sme relatively simple tls that R prvides that are nt easily accmplished in PwerBI. Data Set Fr the first prtin f this wrkshp we will be wrking with sets and arrays f ur creatin. The latter prtin here will use a dataset frm the public data catalg f the gvernment f Canada. Our surce was dwnlad frm here: After dwnlading, I trimmed ut sme f larger hspitals t have a mre cnsistent distributin f data. The riginal data was a little t varied t prvide useful insights it was. I additinally filtered dwn t a few surgical prcedures, again t eliminate sme clutter. Wrkshp Outline 1. What is R? 2. Utilizing R in PwerBI 3. Questins 5 P a g e

6 What Is R? R is an pen surce language and envirnment fr statistical cmputing and graphics. It prvides a wide variety f statistical and graphical techniques and is highly custmizable. This sectin examines sme f the basics f hw t use R and what it is capable f. What Is R? Installing R Installing R is as easy as We need t have it installed t wrk with it tday. What is R? Installing R We must begin with installing R. This is very simple. We ll navigate t R s page and dwnlad R frm there. If yu already have R installed n yur cmputer yu can skip this step. 1. Navigate t the fllwing link 2. Click Dwnlad R fr Windw 3. Open the dwnladed file and prceed as nrmal t install. It really is that easy. 6 P a g e

7 What Is R? Installing RStudi The default R GUI is nt very friendly t wrk in. We are ging t install RStudi which is way better t wrk and experiment with R in. It will be much easier t see what we are ding. This step is again ging t be extremely simple. What is R? Installing RStudi This will again be as easy as last step. If yu already have R Studi yu can skip this. 1. Navigate t the fllwing in yur web brwser studi/dwnlad/ 2. Click the dwnlad buttn fr RStudi Desktp, this is the free versin f RStudi 3. Once yur dwnlad finishes, g thrugh the nrmal prcess f installing. I prmise things get mre exciting after this 7 P a g e

8 What Is R? Basic Syntax One f the reasns R is s widely used is because it is very simple t get started. While yu can get very detailed, yu can als just explre the easily accessible packages that R has available. This sectin will start t g thrugh sme basics and allw us t build a fundatin fr what we can d nce we are in PwerBI. What is R? Basic Syntax Nw we are ging t review sme basics in R syntax. We are ging t talk abut variables, peratins and arrays. 1. Open RStudi. Yu will be presented with a simple wrkspace fr us t begin develping in. 2. Nw we are ging t assign sme variables. In the cnsle windw, type a = 6 and hit return. Observe the new item under values in ur envirnment. 3. Type b <- 12 and hit return. 4. Type 42 -> c and hit return. 5. Again, have a lk at ur envirnment and see these are just three ways f assigning new variables. 6. Type b <- FALSE hit return. 7. Our variable b which was an integer is nw verwritten as a Blean value. Nte the Blean values TRUE and FALSE must be represented in all capitals as shwn. 8. We can als create character variables. Type txt = Hell. 9. Let s make ne mre value, type true = TRUE. Nw we are ging t have a lk at peratins within R. 8 P a g e

9 S far, ur cnsle shuld lk smething like the screen sht t the right. Nw we are ging t use these variables in sme very simple cases. 10. In the cnsle type a + c. Ntice the result it returns. Als ntice that n variables have changed. This is a ne time result frm R. 11. Nw type result = a + c This time, R did nt give yu the result. But rather the result was stred as a variable. T see the result in the cnsle type result and hit return. 12. Type a^2 and hit return. R executed 6 squared and returned the result. 13. We can als use Blean expressins using the symbls & fr and, and fr r. Type b & true, then b true. Observe. 14. Nw we are ging t create sme arrays. In the cnsle type arr1 = c(1,2,3,4,5). We have created an array with the values 1 thrugh 5, entered manually. 15. Type arr2 = 6:10.This is a quick way f creating an array with numbers 6 thrugh Type arr1 and hit enter, then arr2 and hit enter t see the cntents f bth arrays. 17. Type arr1*arr2 ad bserve the dt prduct f the tw arrays. 18. Type arr2[3], this yields the 3 rd element f arr2. Yu can experiment with elements f arrays. Tyr arr2[2:4]. Arrays are the first step in a very imprtant cncept fr us. 9 P a g e

10 What Is R? Data Frames Nw that we have spent sme time explring syntax and peratins in R we can talk abut data frames. They are very simple t understand, but they are very imprtant fr wrking with R in PwerBI. Yu will see why later tday. What is R? Data Frames Let s create sme arrays t create ur data frame with. 1. Type id = 100:104 and hit return. This gives us an array with 5 entries. 2. Type name = c( Chris, Craig, Michael, Micah, Dmitry ), nw we have a array with 5 names. 3. Nw type frame = data.frame(id,name). Have a lk in ur envirnment nw. Rather than a data frame being a value it is nw in a different sectin labeled Data. It states that frame has 5 bjects f 2 variables. What exactly have we created? 4. Type frame and hit enter t see what we have created. Once we ve dne this it becmes very clear that a data frame is just a fancy wrd fr a table! The 5 bjects refer t the number f rws, and the tw variables refer t the number f clumns. Nw that we have seen what a data frame is, we have sme lgical restrictins. If we wish t create a data frame, all f the arrays we want t cmbine must have the same number f elements. 5. We can experiment by creating a new id array and adding a sixth element. We can d this by typing id2 = id, then id2[6] = P a g e

11 6. Next, we can attempt t create a new data frame with id2 and name and see what happens. Typing frame2 = data.frame(id2,name) yields the fllwing. What can we d with a Data Frame? Well the answer is a lt. But first we will just g ver sme basic peratins. 7. Type names(frame) and ntice this lists the names f the clumns in ur data frame. 8. Type ncl(frame), this returns the number f clumns ur data frame has. 9. Type nrw(frame), this (can yu guess?) returns the number f rws in ur data frame. 10. frame[2:4,] returns the 2 nd thrugh the 4 th rws. 11. frame[2:4,1] returns the values frm the first clumn fr rws 2 thrugh Lastly frame$id and frame$name return their respective clumn. Nw we ve seen what data frames are and sme basic peratins we can d with them. Our next step is t explre R visuals and what we have access t. 11 P a g e

12 What Is R? Creating Visauls in R (Part 1) Nw that we ve cvered basics f syntax and data frames, we can start t g ver visuals in R. This sectin is first ging t g thrugh sme basic default visuals in R, then we will have a lk at sme custmizatin and mre advanced visual packages. It is key t remember that nce we have a data frame ready, mst visuals are easy t implement. The hardest part is finding the right package and prcess fr what yu are trying t d. What is R? Creating Visuals in R We are ging t g thrugh sme simple examples first. Fr ur first tw visuals we will just be creating sme simple data t wrk with. After this we will imprt sme data t wrk with. Remember the idea behind these exercises is t get ur feet wet in sme f the simple analysis that R can enable. 1. First, we need t create sme new data. Yu can cpy and paste this int yur cnsle numbers = c(6, 6, 6, 5, 5, 8, 9, 3, 4, 2, 3, 4, 5, 8, 9, 0, 5, 2, 3, 4, 5, 1, 4, 6, 3) 2. Nw type hist(numbers). Observe hw a histgram was created in the bttm right f RSutdi. This displays the number f ccurrences f each number in ur array. Ntice hw in grups up numbers in pairs f tw. We can custmize this. 3. Type hist(numbers, breaks = 10). Nw ur histgram has a clumn fr each digit. Let s try a little mre custmizatin. 4. Nw we are ging t build a nrmal curve f best fit. Type xfit = seq(min(numbers),max(numbers),length =40) and yfit=dnrm(xfit,mean=mean(numbers),sd =sd(numbers)) and h = hist(numbers, breaks = 10) and lastly yfit=yfit*diff(h$mids[1:2])*length(numbers ) 12 P a g e

13 This prcess created the nrmal distributin f best fit and used this t apprximate a line f best fit. 5. Type lines(xfit,yfit, cl = blue ). Every visual in R has many parameters fr custmizatin. We cannt g thrugh all f them, hwever, they will always be just a Ggle search away. Next, we are ging t wrk with a scatter chart. Again, as anther example f hw we can extract infrmatin frm data using sme basic frmulas. 6. Enter the fllwing arrays int R. x = c(1,3,4,7,8,13,14,18,22,21,22,24,25,28,30,35) y = c(1,171, 16, 20, 124, 299, 135, 450, 244, 591, 424, 726, 595, 624, 1170, 1225) 7. Nw type plt(x,y). Observe the scatter plt. Nw we want t see what we can determine abut this plt. We are ging t experiment with creating lines f best fit. 8. Type lm = lm(y~x). In this statement lm stands fr linear mdel. We nw have an bject lm which represents the line f best fit fr this data. Type lm and hit return t see the details. Recall a line in the plane is represented as y = ax + b. a is the slpe, and b is the intercept. 9. Type abline(lm(y~x)). Have a lk at ur line f best fit! This is linear regressin. It lks like we can d a bit better thugh. 10. Our next step is t create a quadratic mdel. Recall a quadratic is in the frm y = ax^2 + bx + c. We need a new variable t represent x^2. Type x2 = x^ Nw we are ging t create ur mdel. Type q = lm(frmula = y~x+x2) This gives us a line f best fit in tw variables. 12. Nw we need t use this mdel t create a new line. Enter the fllwing int R and have a lk! xmdel = seq(0,35,0.5) ymdel = predict(q, list(x=xmdel,x2=xmdel^2)) lines(xmdel,ymdel) This is quadratic regressin! 13 P a g e

14 13. Yu can als use this mdel t predict a specific value. Let s predict fr x = 50. Type the fllwing. predict(q,list(x=50,x2=50^2)) 14. Befre we finish up with this example, I want t d ne mre thing. Type cr(x,y). This gives yu the crrelatin cefficient between x and y. This number shws yu hw psitively r negatively the data pints are assciated. These are the kinds f peratins and results that R ffer that are nt s easy t btain within PwerBI. Linear and quadratic regressin are very simple examples f machine learning and predictin. R can d far mre than just thse! The purpse f these exercises has been t see the prcess in which ne can explre data within R. The mst challenging part f building visuals within PwerBI is testing. It is very difficult t test much befre the final prduct This is where RStudi cmes in. 14 P a g e

15 What Is R? Creating Visuals in R (Part 2) Nw we are ging t develp a visual using a dataset that we will eventually prt int PwerBI. This ne is a ging t be mre advanced and use a much larger dataset. It will utilize the package ggplt2 which has an extensive visual library fr R. Once we have a visual that we are happy with here, we are ging int PwerBI. We will imprt the same dataset and use R in PwerBI t recreate ur visual and create sme interactive slicers t g alng side it. What is R? Creating Visuals in R We have cvered sme f the basic visuals available in R. Nw we are ging t explre sme ptins in ggplt2 t try and find a visual that we wuld want in ur PwerBI reprt. 1. Our first step in this explratin is t imprt sme data. S far, we have nly wrked with small arrays f ur creatin. This time we are ging t imprt ur prject dataset int R. T d this click File -> Imprt Dataset -> Frm Text (base). Frm here yu will navigate t ur cntent wrk bk and chse Surgeries.csv. Frm here click Imprt. 2. Have a lk this created a new data frame fr us. Type head(surgeries) t get the first 6 items f each clumn. 3. Nw we want t start utilizing sme f this data t create a visual using ggplt2. We first must install ggplt2. Type install.packages( ggplt2 ) and hit return. 4. Nw we need t lad the package int ur library. Type library(ggplt2). Any time yu want t use a package in R, yu simply must fllw thse tw steps t lad it up. 5. Nw we are ging t start t build ur visual. ggplt is an incredible visual package in R. It is ne f the mst used visual packages. It can be a bit strange t wrk with at first, but it is built t be 15 P a g e

16 flexible and reasnable t learn. There are many resurces t learn hw t use ggplt but here is ne, and anther, that I recmmend fr yu if yu wish t try mre utside f this tutrial. 6. T summarize quickly, a plt in ggplt cnsists f layers built upn a canvas. The first step we will take, is t create the canvas. T d this type (r cpy & paste) the fllwing: gg = ggplt(surgeries, aes(x = Surgeries$FISCAL_YEAR, y= Surgeries$WAITING)) This creates a canvas with aesthetic defining the x and y axis. Type gg and hit return and we shuld see a blank canvas. 7. Nw we are ging t start adding (literaly) sme gems, r gemetric representatins, t this canvas. There are many different gems that wrk in different aesthetic structures. Type: gg2 = gg + gem_pint() Nw type gg2 and yu shuld see a canvas with ur pints represented as dts. Nw ntice ur x axis is very static. All ur values are n integers. This is fine, but I think we can make a mre interesting viewing experience by shifting them all a little bit. 8. We are ging t recreate this canvas with a different gem. gg2 = gg + gem_jitter() Nw type gg2 and hit enter t see this effect. This time we used a different gem 16 P a g e

17 which is like pltting pints but avids verlap when it can by shuffling the x axis. This is interesting, but I think we can add sme mre t this! 9. Type gg2 = gg + gem_jitter(aes(clr = Surgeries$HEALTH_AUTHORITY)) and type gg2 t see the result! Nw we adjusted the aesthetic t include HEALTH_AUTHORITY as the clr f ur pints. 10. Nw let s add lines which represent mvement f the average as well. 11. Type gg2 = gg2 + gem_smth(aes(clr= Surgeries$HEALTH_AUTHORITY)) Type gg2 t see the result! Ntice here hw we added the lines directly t ur plt with the pints already included. We can iterate ver ur plt like this as much as we wish! 12. Next, just fr the sake f it, let s add the line fr the linear mdel f ur entire data set cmbined t this chart as well. Type this t create ur linear mdel: lm=lm(surgeries$waiting~surgeries$fi SCAL_YEAR) Nw unfrtunately we can t quite plug this mdel int a chart like befre. This time we must extract ur cefficients frm the mdel (remember y = ax + b). This is kind f crazy, but it turns ut that ur mdel is an bject pretty similar t a data frame. We can access different clumns which 17 P a g e

18 each have different data (type summary.lm(lm) if yu are interested.) T extract the slpe and intercept type: slpe = summary.lm(lm)$cefficients[2,1] And, int = summary.lm(lm)$cefficients[1,1] 13. Nw we get t add this line t ur plt. 14. Type the fllwing: gg2 = gg2 + gem_abline(intercept = int, slpe = slpe, clr = black ) And nw type gg2 t see the result. Here we have it. We ve created a visual using ggplt. While it isn t anything t fancy, it demnstrates the pwer f ggplt2. As ne final nte I d like t mentin that yu can change the scale in which yu are pltting extremely easy. T the right is an example f pltting this exact same visual except with ur y axis as sqrt(waiting). Our riginal canvas is mdified as such: gg = ggplt(surgeries, aes(x= Surgeries$FISCAL_YEAR, y=sqrt(surgeries$waiting))) While nt technically a rigrus way f viewing this data, this shws us the utility that this srt f pltting can prvide. Nte ur linear mdel is nt n this chart because we wuld have t recreate ur mdel in the square rt space fr it t fit in this frame. 18 P a g e

19 Utilizing R in PwerBI Alright, s far, we have explred sme basic syntax in R, used it t build sme basic visuals, and then tk a step frward and built a visual using the package ggplt2. Our next gal is t rebuild that visual using R Script in PwerBI. The key difference between wrking in RStudi and R Script is that we can t test each line individually. When PwerBI runs the script it ges thrugh everything we write and if there are any errrs it will spit back an errr. Hencefrth, we must always wrk carefully, ensuring that we can always recgnize where ur errrs are cming frm. Utilizing R in PwerBI Using What we Learned in R Studi. Let s get started. Utilizing R in PwerBI Using What we Learned in R Studi. Okay, s nw we need t get int PwerBI. Open a blank wrk bk. Our first step is ging t be t imprt ur surgeries data. 1. Click the drp dwn by get data, select text/csv. Then find and select ur Surgeries.csv flder in ur cntent pack. Click lad. 2. Next, we are ging create an R visual. Under the visualizatins tab click the R visual icn. Yu shuld see a visual appear alng with a new text bx dwn belw. Let s resize this visual s it s easier t see what we are ding. 3. Nw we need t drag ur data that we are ging t need int ur R visual. Recall we nly used WAITING, FISCAL_YEAR, and HEALTH_AUTHORITY. These names in the bxes under values are hw we are ging t address these items in ur script. Nw it is very imprt t set ur values t Dn t Summarize in ur values. D this nw by clicking the drp dwn beside the title. 19 P a g e

20 4. Nw have a lk at ur Script. Ntice the first few lines are cmments explaining ur situatin. We have a data frame named dataset. We will need t address ur data using this data frame name. 5. First thing is simple. We need t include ggplt2 in ur Script. Type library(ggplt2) int ur script. 6. Nw we need t create ur canvas, type: gg = ggplt(dataset, aes(x=fiscal_year,y=waiting)) Ntice hw we used dataset this time rather than Surgeries. That is because ur data is aliased differently this time. 7. Let s test ur script. Add gg t the end f ur script and the click the run buttn at the tp right f the script windw. 8. Nw lets add ur jitter and test this ut. Type: gg = gg + gem_jitter(aes(clr = dataset$health_authority)) Make sure this ccurs befre the final gg call, then hit run and check that this wrks. Our script shuld lk like the image t the right. 9. Nw t add ur average lines: gg = gg + gem_smth(aes(clr = dataset$health_authority)) Again, run this t make sure it wrks. This shuld be inserted between ur last gem, and ur final call f gg. Have a lk at the result! 20 P a g e

21 10. Lastly, we get t create ur regressin line. Insert ur steps at the beginning f ur script. mdel = lm( dataset$waiting ~ dataset$fiscal_year) int = summary.lm(mdel)$cefficients[1,1] slpe = summary.lm(mdel)$cefficients[2,1] and lastly insert ur last gem nt ur canvas. gg = gg + gem_abline(slpe = slpe, intercept = int, clur = black ) Our final script shuld lk smething like the ne t the right. 11. Our last step is t run this and see hw it lks. Nw the cl stuff cmes in the interactin! Let s add sme slicers and see what we can see. 12. I prefer the chiclet slicer frm the visual market place. S, let s g ahead and include that. Click n the three ellipses in the visualizatins selectin pane. Then select Imprt Frm Marketplace. Frm here use the search bar t find Chiclet Slicer and lad it int yur reprt by clicking Add. I m ging t create tw slicers next t my visual, ne fr hspital name and the ther fr prcedure. 13. With the white space selected, click the Chiclet slicer icn in the Visualizatins 21 P a g e

22 pane. Click and drag HOSPITAL_NAME int this ne. Repeat this prcess with PROCEDURE_GROUP. 14. Nw I am ging t d sme simple analysis. Lets create a Card with the average waiting fr Create a new measure by right clicking n ur table in the fields sectin, and then selecting New measure. Enter the fllwing: 2016 avg = CALCULATE(AVERAGE(Surgeries[WAI TING]),FILTER(Surgeries,Surgeries[FIS CAL_YEAR] = CALCULATE(MAX(Surgeries[FISCAL_Y EAR])))) Nw drag this measure nt ur canvas and then with the visual selected click the card icn in the Visualizatins pane. 15. Nw I want t predict the average waiting fr surgeries in 2020 using ur regressin line. There is a prblem hwever; we cannt pass a value ut f ur R Script. S, we are ging t have t get creative. In ur script lets add the fllwing. predict = slpe* int max = max(dataset$waiting,na.rm = TRUE) text = paste("2020 Predicted Average Waiting is", rund(predict,digits = 2)) Each f these three lines des smething 22 P a g e

23 imprtant fr us. First, we get ur predicted value, secnd, we find the max waiting value, third we need t create a text t display. Nw we are ging t display this in a text bx in ur visual. 16. We are ging t add this text t ur canvas again using the fllwing. gg = gg + gem_text(x=2011,y=max*0.95,label= text, size = 5) Our final script shuld lk like the ne t the right. When we run this, we get the fllwing. Cpied belw is ur final script as well. library(ggplt2) mdel = lm(dataset$waiting~dataset$fiscal_ YEAR) slpe = summary.lm(mdel)$cefficients[2,1] int = summary.lm(mdel)$cefficients[1,1] predict = slpe*2020+int max = max(dataset$waiting,na.rm = TRUE) label = paste("2020 Predicted Average Waiting is", rund(predict,digits = 2)) gg = ggplt(dataset, aes(x=fiscal_year,y=waiting)) gg = gg + gem_jitter(aes(clr = dataset$health_authority)) gg = gg + gem_smth(aes(clr = dataset$health_authority)) gg = gg + gem_abline(slpe = slpe, intercept = int, clur = "black") gg = gg + gem_text(x=2011,y=max*0.95,label= label,size = 5) gg 23 P a g e

24 Cnclusin: And this cncludes ur R in PwerBI training manual. I hpe yu ve fund this a helpful resurce in practicing and learning the fundatins f R and hw it can be used in PwerBI. The applicatins and techniques available t yu nw in R nw extend vastly in machine learning, visualizatins and all srts f ther mathematical and statistical cnstructs. It is nw up t yu t explre and figure ut what yu can d with it. Cnclusin: Limitatins There are a few limitatins with using R in PwerBI. There are a few key nes t be aware f that I will mentin here. The rest can be fund here. Data size limitatins data used by the R visual fr pltting is limited t 150,000 rws. If mre than 150,000 rws are selected, nly the tp 150,000 rws are used and a message is displayed n the image. Calculatin time limitatin if an R visual calculatin exceeds five minutes the executin times ut, resulting in an errr. Cnclusin: Questins Nw is the time fr yur questins and requests. Let me knw if yu have any prjects yu wish t wrk with while I am available. Or, let me knw if yu have any higher-level questins abut machine learning in general and where t start with that. 24 P a g e

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

INSTALLING CCRQINVOICE

INSTALLING CCRQINVOICE INSTALLING CCRQINVOICE Thank yu fr selecting CCRQInvice. This dcument prvides a quick review f hw t install CCRQInvice. Detailed instructins can be fund in the prgram manual. While this may seem like a

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

BI Publisher TEMPLATE Tutorial

BI Publisher TEMPLATE Tutorial PepleSft Campus Slutins 9.0 BI Publisher TEMPLATE Tutrial Lessn T2 Create, Frmat and View a Simple Reprt Using an Existing Query with Real Data This tutrial assumes that yu have cmpleted BI Publisher Tutrial:

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

Exporting and Importing the Blackboard Vista Grade Book

Exporting and Importing the Blackboard Vista Grade Book Exprting and Imprting the Blackbard Vista Grade Bk Yu can use the Blackbard Vista Grade Bk with a spreadsheet prgram, such as Micrsft Excel, in a number f different ways. Many instructrs wh have used Excel

More information

Qualtrics Instructions

Qualtrics Instructions Create a Survey/Prject G t the Ursinus Cllege hmepage and click n Faculty and Staff. Click n Qualtrics. Lgin t Qualtrics using yur Ursinus username and passwrd. Click n +Create Prject. Chse Research Cre.

More information

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY Accessing RefWrks Access RefWrks frm a link in the Bibligraphy/Citatin sectin f the Hurst Library web page (http://library.nrthwestu.edu) Create

More information

Entering an NSERC CCV: Step by Step

Entering an NSERC CCV: Step by Step Entering an NSERC CCV: Step by Step - 2018 G t CCV Lgin Page Nte that usernames and passwrds frm ther NSERC sites wn t wrk n the CCV site. If this is yur first CCV, yu ll need t register: Click n Lgin,

More information

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

Installing and using QGIS

Installing and using QGIS Land Accunting Exercise Part 1 Installing QGIS 1 Installing and using QGIS Reginal Expert Wrkshp n Land Accunting, UNESCAP, 09-2017 UNESCAP - Reginal Expert Wrkshp n Land Accunting, Bangkk, Thailand, Sep.

More information

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to:

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to: Summary This dcument is a guide intended t guide yu thrugh the prcess f installing and cnfiguring PepleTls 8.55.27 (r current versin) via Windws Remte Applicatin (App). Remte App allws the end user t run

More information

Simple Regression in Minitab 1

Simple Regression in Minitab 1 Simple Regressin in Minitab 1 Belw is a sample data set that we will be using fr tday s exercise. It lists the heights & weights fr 10 men and 12 wmen. Male Female Height (in) 69 70 65 72 76 70 70 66 68

More information

Getting Started with the Web Designer Suite

Getting Started with the Web Designer Suite Getting Started with the Web Designer Suite The Web Designer Suite prvides yu with a slew f Dreamweaver extensins that will assist yu in the design phase f creating a website. The tls prvided in this suite

More information

Gmail and Google Drive for Rutherford County Master Gardeners

Gmail and Google Drive for Rutherford County Master Gardeners Gmail and Ggle Drive fr Rutherfrd Cunty Master Gardeners Gmail Create a Ggle Gmail accunt. https://www.yutube.cm/watch?v=kxbii2dprmc&t=76s (Hw t Create a Gmail Accunt 2014 by Ansn Alexander is a great

More information

Municode Website Instructions

Municode Website Instructions Municde Website instructins Municde Website Instructins The new and imprved Municde site allws yu t navigate t, print, save, e-mail and link t desired sectins f the Online Cde f Ordinances with greater

More information

STIDistrict AL Rollover Procedures

STIDistrict AL Rollover Procedures 2009-2010 STIDistrict AL Rllver Prcedures General Infrmatin abut STIDistrict Rllver IMPORTANT NOTE! Rllver shuld be perfrmed between June 25 and July 25 2010. During this perid, the STIState applicatin

More information

CLIC ADMIN USER S GUIDE

CLIC ADMIN USER S GUIDE With CLiC (Classrm In Cntext), teaching and classrm instructin becmes interactive, persnalized, and fcused. This digital-based curriculum, designed by Gale, is flexible allwing teachers t make their classrm

More information

Enabling Your Personal Web Page on the SacLink

Enabling Your Personal Web Page on the SacLink 53 Enabling Yur Persnal Web Page n the SacLink *Yu need t enable yur persnal web page nly ONCE. It will be available t yu until yu graduate frm CSUS. T enable yur Persnal Web Page, fllw the steps given

More information

Class Roster. Curriculum Class Roster Step-By-Step Procedure

Class Roster. Curriculum Class Roster Step-By-Step Procedure Imprtant Infrmatin The page prvides faculty and staff a list f students wh are enrlled and waitlisted in a particular class. Instructrs are given access t each class fr which they are listed as an instructr,

More information

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar Wrd 2007 The Ribbn, the Mini tlbar, and the Quick Access Tlbar In this practice yu'll get the hang f using the new Ribbn, and yu'll als master the use f the helpful cmpanin tls, the Mini tlbar and the

More information

Faculty Textbook Adoption Instructions

Faculty Textbook Adoption Instructions Faculty Textbk Adptin Instructins The Bkstre has partnered with MBS Direct t prvide textbks t ur students. This partnership ffers ur students and parents mre chices while saving them mney, including ptins

More information

MyUni Adding Content. Date: 29 May 2014 TRIM Reference: D2013/ Version: 1

MyUni Adding Content. Date: 29 May 2014 TRIM Reference: D2013/ Version: 1 Adding Cntent MyUni... 2 Cntent Areas... 2 Curse Design... 2 Sample Curse Design... 2 Build cntent by creating a flder... 3 Build cntent by creating an item... 4 Cpy r mve cntent in MyUni... 5 Manage files

More information

TRAINING GUIDE. Lucity Mobile

TRAINING GUIDE. Lucity Mobile TRAINING GUIDE The Lucity mbile app gives users the pwer f the Lucity tls while in the field. They can lkup asset infrmatin, review and create wrk rders, create inspectins, and many mre things. This manual

More information

Because of security on the site, you cannot create a bookmark through the usual means. In order to create a bookmark that will work consistently:

Because of security on the site, you cannot create a bookmark through the usual means. In order to create a bookmark that will work consistently: The CllegeNet URL is: https://admit.applyweb.cm/admit/shibbleth/crnell Lg in with Crnell netid and Kerbers passwrd Because f security n the site, yu cannt create a bkmark thrugh the usual means. In rder

More information

Exercise 4: Working with tabular data Exploring infant mortality in the 1900s

Exercise 4: Working with tabular data Exploring infant mortality in the 1900s Exercise 4: Wrking with tabular data Explring infant mrtality in the 1900s Backgrund Althugh peple tend t think abut GIS as being primarily cncerned with mapping. It is better thught f as a type f database

More information

ClubRunner. Volunteers Module Guide

ClubRunner. Volunteers Module Guide ClubRunner Vlunteers Mdule Guide 2014 Vlunteer Mdule Guide TABLE OF CONTENTS Overview... 3 Basic vs. Enhanced Versins... 3 Navigatin... 4 Create New Vlunteer Signup List... 5 Manage Vlunteer Tasks... 7

More information

IFSP PDF Upload/Download Guidance

IFSP PDF Upload/Download Guidance IFSP PDF Uplad/Dwnlad Guidance Intr/backgrund The dwnladable IFSP was created t assist FSC s in writing an IFSP r IFSP review n a visit withut the need fr internet cnnectin. Adbe Acrbat is required fr

More information

Use of GIS & GPS in Trail and Land Management

Use of GIS & GPS in Trail and Land Management CLCC Cnference 2014 Intrductin t CT ECO Use f GIS & GPS in Trail and Land Management Explre CT ECO CT ECO is a partnership between the CT Department f Energy and Envirnmental Prtectin (CT DEEP) and the

More information

Tips For Customising Configuration Wizards

Tips For Customising Configuration Wizards Tips Fr Custmising Cnfiguratin Wizards ver 2010-06-22 Cntents Overview... 2 Requirements... 2 Applicatins... 2 WinSCP and Putty... 2 Adding A Service T An Existing Wizard... 3 Gal... 3 Backup Original

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

Lesson 4 Advanced Transforms

Lesson 4 Advanced Transforms Lessn 4 Advanced Transfrms Chapter 4B Extract, Split and replace 10 Minutes Chapter Gals In this Chapter, yu will: Understand hw t use the fllwing transfrms: Replace Extract Split Chapter Instructins YOUR

More information

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide Quick Start Guide This guide will explain the prcess f installing & using the DemPad Designer sftware fr PC, which allws yu t create a custmised Graphical User Interface (GUI) fr an iphne / ipad & embed

More information

FAQ. Using the Thinkific Learning Platform

FAQ. Using the Thinkific Learning Platform FAQ Using the Thinkific Learning Platfrm General Infrmatin Thinkific is the curse building sftware we have chsen t use fr ur n-line classes. The fllwing sectins prvide infrmatin n issues that may arise

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

TUTORIAL --- Learning About Your efolio Space

TUTORIAL --- Learning About Your efolio Space TUTORIAL --- Learning Abut Yur efli Space Designed t Assist a First-Time User Available t All Overview Frm the mment yu lg in t yur just created myefli accunt, yu will find help ntes t guide yu in learning

More information

LAB 0 MATLAB INTRODUCTION

LAB 0 MATLAB INTRODUCTION Befre lab: LAB 0 MATLAB INTRODUCTION It is recmmended that yu d the secnd prblem n the hmewrk befre cming t lab, althugh that wn t be required r cllected in lab. It is als recmmended that yu read the Intrductin

More information

LiveEngage and Microsoft Dynamics Integration Guide Document Version: 1.0 September 2017

LiveEngage and Microsoft Dynamics Integration Guide Document Version: 1.0 September 2017 LiveEngage and Micrsft Dynamics Integratin Guide Dcument Versin: 1.0 September 2017 Cntents Intrductin... 3 Step 1: Sign Up... 3 CRM Widget Signing Up... 3 Step 2: Cnfiguring the CRM Widget... 4 Accessing

More information

Recommended Minimum Requirements for Cisco Meeting Application Web RTC Use

Recommended Minimum Requirements for Cisco Meeting Application Web RTC Use Recmmended Minimum Requirements fr Cisc Meeting Applicatin Web RTC Use Fr the best experience the fllwing requirements and recmmendatins shuld be fllwed. Requirements: External USB web camera capable f

More information

Managing Your Access To The Open Banking Directory How To Guide

Managing Your Access To The Open Banking Directory How To Guide Managing Yur Access T The Open Banking Directry Hw T Guide Date: June 2018 Versin: v2.0 Classificatin: PUBLIC OPEN BANKING LIMITED 2018 Page 1 f 32 Cntents 1. Intrductin 3 2. Signing Up 4 3. Lgging In

More information

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel NiceLabel LMS Installatin Guide fr Single Server Deplyment Rev-1702 NiceLabel 2017. www.nicelabel.cm 1 Cntents 1 Cntents 2 2 Architecture 3 2.1 Server Cmpnents and Rles 3 2.2 Client Cmpnents 3 3 Prerequisites

More information

LibrePlan at CRJ A hands-on tutorial

LibrePlan at CRJ A hands-on tutorial LibrePlan at CRJ A hands-n tutrial By Sergi Reyes (April 2015) LOGING IN TO LIBREPLAN LibrePlan is running n a Linux server which is part ur CRJ s VPN system. In rder fr this link t wrk yu must be lgged

More information

Lab 4. Name: Checked: Objectives:

Lab 4. Name: Checked: Objectives: Lab 4 Name: Checked: Objectives: Learn hw t test cde snippets interactively. Learn abut the Java API Practice using Randm, Math, and String methds and assrted ther methds frm the Java API Part A. Use jgrasp

More information

Scroll down to New and another menu will appear. Select Folder and a new

Scroll down to New and another menu will appear. Select Folder and a new Creating a New Flder Befre we begin with Micrsft Wrd, create a flder n yur Desktp named Summer PD. T d this, right click anywhere n yur Desktp and a menu will appear. Scrll dwn t New and anther menu will

More information

Constituent Page Upgrade Utility for Blackbaud CRM

Constituent Page Upgrade Utility for Blackbaud CRM Cnstituent Page Upgrade Utility fr Blackbaud CRM In versin 4.0, we made several enhancements and added new features t cnstituent pages. We replaced the cnstituent summary with interactive summary tiles.

More information

Tips and Tricks in Word 2000 Part II. Presented by Carla Torgerson

Tips and Tricks in Word 2000 Part II. Presented by Carla Torgerson Tips and Tricks in Wrd 2000 Part II Presented by Carla Trgersn (cnt2@psu.edu) 1. using styles Styles are used t create frmatting shrtcuts s yu can create a dcument that has frmatting cnsistency. Fr example,

More information

6 Ways to Streamline Your Tasks in Outlook

6 Ways to Streamline Your Tasks in Outlook 6 Ways t Streamline Yur Tasks in Outlk Every jb requires a variety f tasks during a given day. Maybe yurs includes meeting with clients, preparing a presentatin, r cllabrating with team members n an imprtant

More information

Wave IP 4.5. CRMLink Desktop User Guide

Wave IP 4.5. CRMLink Desktop User Guide Wave IP 4.5 CRMLink Desktp User Guide 2015 by Vertical Cmmunicatins, Inc. All rights reserved. Vertical Cmmunicatins and the Vertical Cmmunicatins lg and cmbinatins theref and Vertical ViewPint, Wave Cntact

More information

Using CppSim to Generate Neural Network Modules in Simulink using the simulink_neural_net_gen command

Using CppSim to Generate Neural Network Modules in Simulink using the simulink_neural_net_gen command Using CppSim t Generate Neural Netwrk Mdules in Simulink using the simulink_neural_net_gen cmmand Michael H. Perrtt http://www.cppsim.cm June 24, 2008 Cpyright 2008 by Michael H. Perrtt All rights reserved.

More information

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page Managing the News Page TABLE OF CONTENTS: The News Page Key Infrmatin Area fr Members... 2 Newsletter Articles... 3 Adding Newsletter as Individual Articles... 3 Adding a Newsletter Created Externally...

More information

Arius 3.0. Release Notes and Installation Instructions. Milliman, Inc Peachtree Road, NE Suite 1900 Atlanta, GA USA

Arius 3.0. Release Notes and Installation Instructions. Milliman, Inc Peachtree Road, NE Suite 1900 Atlanta, GA USA Release Ntes and Installatin Instructins Milliman, Inc. 3424 Peachtree Rad, NE Suite 1900 Atlanta, GA 30326 USA Tel +1 800 404 2276 Fax +1 404 237 6984 actuarialsftware.cm 1. Release ntes Release 3.0 adds

More information

Your Project Plan and Smartsheet

Your Project Plan and Smartsheet USG Managed Services Yur Prject Plan and Smartsheet Change Management Tlkit Cntents 1.0 Purpse... 3 2.0 Accessing Smartsheet and Yur Prject Plan... 4 2.1 Smartsheet Lgin... 4 2.2 Type f Access... 5 3.0

More information

User Guide. Document Version: 1.0. Solution Version:

User Guide. Document Version: 1.0. Solution Version: User Guide Dcument Versin: 1.0 Slutin Versin: 365.082017.3.1 Table f Cntents Prduct Overview... 3 Hw t Install and Activate Custmer Satisfactin Survey Slutin?... 4 Security Rles in Custmer Satisfactin

More information

Employee Self Service (ESS) FAQs

Employee Self Service (ESS) FAQs Emplyee Self Service (ESS) FAQs ESS User Access & Lgin/Passwrd Inf Upgrade Changes t ESS Recently we upgrades t versin 10 f ur HR/Payrll system which includes the Emplyee Self Service (ESS) mdule. Just

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 AUTO-SCHEDULER USER GUIDE Revised n 08/19/2014 OVERVIEW The purpse f this dcument is t describe the prcess in which t fllw t setup the Rck-Pnd Reprting prduct s that users can schedule

More information

istartsmart 3.5 Upgrade - Installation Instructions

istartsmart 3.5 Upgrade - Installation Instructions istartsmart 3.5 Upgrade - Installatin Instructins Minimum System Requirements: Hatch All-In-One istartsmart Cmputer Learning Center v1.0 r v1.1 Internet access - either hard-wired r wireless cnnectin is

More information

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

More information

Procurement Contract Portal. User Guide

Procurement Contract Portal. User Guide Prcurement Cntract Prtal User Guide Cntents Intrductin...2 Access the Prtal...2 Hme Page...2 End User My Cntracts...2 Buttns, Icns, and the Actin Bar...3 Create a New Cntract Request...5 Requester Infrmatin...5

More information

User Guide. ACE Data Source. OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES

User Guide. ACE Data Source. OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES PROFESSIONAL SERVICES User Guide OnCmmand Wrkflw Autmatin (WFA) ACE Data Surce Prepared fr: ACE Data Surce - Versin 2.0.0 Date: Octber 2015 Dcument Versin: 2.0.0 Abstract The ACE Data Surce (ACE-DS) is

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

Copy your Course: Export and Import

Copy your Course: Export and Import Center f elearning The exprt curse feature creates a ZIP file f yur curse cntent yu will imprt t yur new curse. Exprt packages are dwnladed and imprted as cmpressed ZIP files. D nt unzip an exprt package

More information

Copyrights and Trademarks

Copyrights and Trademarks Cpyrights and Trademarks Sage One Accunting Cnversin Manual 1 Cpyrights and Trademarks Cpyrights and Trademarks Cpyrights and Trademarks Cpyright 2002-2014 by Us. We hereby acknwledge the cpyrights and

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

Getting Started with DocuSign

Getting Started with DocuSign Getting Started with DcuSign DcuSign is the electrnic system used t rute, apprve, and execute cnstructin related dcuments at The University f Alabama. While these basic instructins are intended t help

More information

Quick Start Guide for EAB Campus Advisors

Quick Start Guide for EAB Campus Advisors Student Success Cllabrative Quick Start Guide fr EAB Campus Advisrs Clemsn has launched the EAB Campus platfrm fr advisrs and thers, with the gal f helping students explre a path t timely graduatin cmpletin

More information

DIVAR IP 3000 Field Installation Guide

DIVAR IP 3000 Field Installation Guide CCTV IP Netwrk Vide Technical Brief DIVAR IP 3000 Field Installatin Guide 1 DIVAR IP 3000 Field Installatin Guide Overview The purpse f this guide is t prvide the step-by-step prcess f installing a DIVAR

More information

The Login Page Designer

The Login Page Designer The Lgin Page Designer A new Lgin Page tab is nw available when yu g t Site Cnfiguratin. The purpse f the Admin Lgin Page is t give fundatin staff the pprtunity t build a custm, yet simple, layut fr their

More information

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu BANNER BASICS What is Banner? Definitin Prduct Mdules Self-Service-Fish R Net Lg int Banner Banner Envirnment The Main Windw My Banner Pages What is it? What frm d yu use? Steps t create a persnal menu

More information

This document provides new and updated items that were included in each release of Checkpoint Engage. (Each product requires a separate license.

This document provides new and updated items that were included in each release of Checkpoint Engage. (Each product requires a separate license. WHAT S NEW Checkpint Engage (Onvi) This dcument prvides new and updated items that were included in each release f Checkpint Engage. (Each prduct requires a separate license.) Checkpint Engage prduct supprt

More information

ONLINE GRANT APPLICATION INSTRUCTIONS

ONLINE GRANT APPLICATION INSTRUCTIONS Overview ONLINE GRANT APPLICATION INSTRUCTIONS This dcument is designed t prvide grant applicants with instructins fr use f the Fundant Grant Lifecycle Manager applicatin fr grants frm the Oberktter Fundatin.

More information

TECHNICAL REQUIREMENTS

TECHNICAL REQUIREMENTS TECHNICAL REQUIREMENTS Table f Cntent PLATFORMS... 2 CONNECTION SPEED... 2 SUPPORTED BROWSERS... 2 ARMENIAN LANGUAGE SUPPORT... 2 Windws XP... 2 Windws Vista... 3 Windws 7... 4 Windws 8... 5 MAC OS...

More information

This document provides new and updated items that were included in each release of Checkpoint Engage. (Each product requires a separate license.

This document provides new and updated items that were included in each release of Checkpoint Engage. (Each product requires a separate license. WHAT S NEW Checkpint Engage (Onvi) This dcument prvides new and updated items that were included in each release f Checkpint Engage. (Each prduct requires a separate license.) Checkpint Engage prduct supprt

More information

1 Version Spaces. CS 478 Homework 1 SOLUTION

1 Version Spaces. CS 478 Homework 1 SOLUTION CS 478 Hmewrk SOLUTION This is a pssible slutin t the hmewrk, althugh there may be ther crrect respnses t sme f the questins. The questins are repeated in this fnt, while answers are in a mnspaced fnt.

More information

Ascii Art Capstone project in C

Ascii Art Capstone project in C Ascii Art Capstne prject in C CSSE 120 Intrductin t Sftware Develpment (Rbtics) Spring 2010-2011 Hw t begin the Ascii Art prject Page 1 Prceed as fllws, in the rder listed. 1. If yu have nt dne s already,

More information

Element Creator for Enterprise Architect

Element Creator for Enterprise Architect Element Creatr User Guide Element Creatr fr Enterprise Architect Element Creatr fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Limitatins... 3 Installatin... 4 Verifying the

More information

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template Netwrk Rail ARMS - Asbests Risk Management System Training Guide fr use f the Imprt Survey Template The ARMS Imprt Survey Template New Asbests Management Surveys and their Survey Detail reprts can be added

More information

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files.

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files. Interfacing t MATLAB Overview: Getting Started Basic Tutrial Interfacing with OCX Installatin GUI with MATLAB's GUIDE First Buttn & Image Mre ActiveX Cntrls Exting the GUI Advanced Tutrial MATLAB Cntrls

More information

Courseware Setup. Hardware Requirements. Software Requirements. Prerequisite Skills

Courseware Setup. Hardware Requirements. Software Requirements. Prerequisite Skills The Internet and Cmputing Cre Certificatin Guide cnsists f 64 Lessns, with lessn bjectives, summary and ten review questins. IC³ bjectives are easily lcated by using symbls thrughut the curseware. Curse

More information

Customer Upgrade Checklist

Customer Upgrade Checklist Custmer Upgrade Checklist Getting Ready fr Yur Sabre Prfiles Upgrade Kicking Off the Prject Create a prfiles prject team within yur agency. Cnsider including peple wh can represent bth the business and

More information

Using the DOCUMENT Procedure to Expand the Output Flexibility of the Output Delivery System with Very Little Programming Effort

Using the DOCUMENT Procedure to Expand the Output Flexibility of the Output Delivery System with Very Little Programming Effort Paper 11864-2016 Using the DOCUMENT Prcedure t Expand the Output Flexibility f the Output Delivery System with Very Little Prgramming Effrt ABSTRACT Rger D. Muller, Ph.D., Data T Events Inc. The DOCUMENT

More information

Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide

Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide Paper 1860-2018 Easing int Data Explratin, Reprting, and Analytics Using SAS Enterprise Guide ABSTRACT Marje Fecht, Prwerk Cnsulting Whether yu have been prgramming in SAS fr years, are new t it, r have

More information

McGill University School of Computer Science COMP-206. Software Systems. Due: September 29, 2008 on WEB CT at 23:55.

McGill University School of Computer Science COMP-206. Software Systems. Due: September 29, 2008 on WEB CT at 23:55. Schl f Cmputer Science McGill University Schl f Cmputer Science COMP-206 Sftware Systems Due: September 29, 2008 n WEB CT at 23:55 Operating Systems This assignment explres the Unix perating system and

More information

ONTARIO LABOUR RELATIONS BOARD. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Ontario Labour Relations Board

ONTARIO LABOUR RELATIONS BOARD. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Ontario Labour Relations Board ONTARIO LABOUR RELATIONS BOARD Filing Guide A Guide t Preparing and Filing Frms and Submissins with the Ontari Labur Relatins Bard This Filing Guide prvides general infrmatin nly and shuld nt be taken

More information

APPLY PAGE: LOGON PAGE:

APPLY PAGE: LOGON PAGE: APPLY PAGE: Upn accessing the system fr the first time, yu will land n the Apply Page. This page will shw yu any currently pen pprtunities that yu can apply fr, as well as any relevant deadlines r ther

More information

Getting Started with the SDAccel Environment on Nimbix Cloud

Getting Started with the SDAccel Environment on Nimbix Cloud Getting Started with the SDAccel Envirnment n Nimbix Clud Revisin Histry The fllwing table shws the revisin histry fr this dcument. Date Versin Changes 09/17/2018 201809 Updated figures thrughut Updated

More information

MySqlWorkbench Tutorial: Creating Related Database Tables

MySqlWorkbench Tutorial: Creating Related Database Tables MySqlWrkbench Tutrial: Creating Related Database Tables (Primary Keys, Freign Keys, Jining Data) Cntents 1. Overview 2 2. Befre Yu Start 2 3. Cnnect t MySql using MySqlWrkbench 2 4. Create Tables web_user

More information

Imagine for MSDNAA Student SetUp Instructions

Imagine for MSDNAA Student SetUp Instructions Imagine fr MSDNAA Student SetUp Instructins --2016-- September 2016 Genesee Cmmunity Cllege 2004. Micrsft and MSDN Academic Alliance are registered trademarks f Micrsft Crpratin. All rights reserved. ELMS

More information

Introduction to Adobe Premiere Pro for Journalists:

Introduction to Adobe Premiere Pro for Journalists: Intrductin t Adbe Premiere Pr fr Jurnalists: News editing at the Schl f Jurnalism ***It is highly recmmended if yu plan n ding any multimedia prductin, yu purchase an external USB strage device.*** 1.

More information

Chapter 2 Basic Operations

Chapter 2 Basic Operations Chapter 2 Basic Operatins Lessn B String Operatins 10 Minutes Lab Gals In this Lessn, yu will: Learn hw t use the fllwing Transfrmatins: Set Replace Extract Cuntpattern Split Learn hw t apply certain Transfrmatins

More information

Oracle Universal Records Management Oracle Universal Records Manager Adapter for Documentum Installation Guide

Oracle Universal Records Management Oracle Universal Records Manager Adapter for Documentum Installation Guide Oracle Universal Recrds Management Oracle Universal Recrds Manager Adapter fr Dcumentum Installatin Guide December 2009 Universal Recrds Manager Adapter fr Dcumentum Installatin Guide, Cpyright 2009, Oracle.

More information

Customer Self-Service Center Migration Guide

Customer Self-Service Center Migration Guide Custmer Self-Service Center Migratin Guide These instructins intrduce yu t the new Custmer Prtal, which is replacing the lder Custmer Self-Service Center, and guides yu thrugh the migratin. Dn t wrry:

More information

Renewal Reminder. User Guide. Copyright 2009 Data Springs Inc. All rights reserved.

Renewal Reminder. User Guide. Copyright 2009 Data Springs Inc. All rights reserved. Renewal Reminder User Guide Cpyright 2009 Data Springs Inc. All rights reserved. Renewal Reminder 2.5 User Guide Table f cntents: 1 INTRODUCTION...3 2 INSTALLATION PROCEDURE...4 3 ADDING RENEWAL REMINDER

More information

mconnect Lead Management System 2.0

mconnect Lead Management System 2.0 mcnnect Lead Management System 2.0 User Manual Updated July 2015 Page 1 f 15 This manual serves as a reference guide fr Mahindra Nrth America s mcnnect lead management system. This dcument serves as a

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

Online Banking for Business USER GUIDE

Online Banking for Business USER GUIDE Online Banking fr Business estatements USER GUIDE Cntents Cntents... 1 Online Banking fr Business Getting Started... 2 Technical Requirements... 2 Supprted brwsers... 2 Minimum system requirements... 2

More information

161 Forbes Road Braintree MA Phone: (781) Fax: (781) What's in it? Key Survey & Extreme Form

161 Forbes Road Braintree MA Phone: (781) Fax: (781) What's in it? Key Survey & Extreme Form 161 Frbes Rad Braintree MA 02184 Phne: (781) 849 8118 Fax: (781) 849 8133 WWW.WORLDAPP.COM 8.0 What's in it? Key Survey & Extreme Frm CONTENTS Cntact Manager... 3 Participant Prtal... 3 Reprting Imprvements...

More information

WordPress Overview for School Webmasters

WordPress Overview for School Webmasters WrdPress Overview fr Schl Webmasters Cntents 1. Rle f the Schl Webmaster... 2 2. Rle f the District Webmaster... 2 3. Schl Website Standards... 3 Header... 3 Fter... 3 Pages... 4 Sites... 5 4. Hw T...

More information

Pages of the Template

Pages of the Template Instructins fr Using the Oregn Grades K-3 Engineering Design Ntebk Template Draft, 12/8/2011 These instructins are fr the Oregn Grades K-3 Engineering Design Ntebk template that can be fund n the web at

More information

Towne Information Systems, Inc. Inter-Office Correspondence

Towne Information Systems, Inc. Inter-Office Correspondence Twne Infrmatin Systems, Inc. Inter-Office Crrespndence Date: 2/25/2019 Frm: Bill Salyers Subject: Getting Started with O365 By nw yu shuld have read abut ur mve t Micrsft O365 a new versin f Micrsft Office.

More information

AASHTOWare BrDR Support Center JIRA Getting Started Guide

AASHTOWare BrDR Support Center JIRA Getting Started Guide AASHTOWare BrDR Supprt Center JIRA Getting Started Guide Versin 1.0.0.0 August 2013 Cpyright 1997-2013 by the American Assciatin f State Highway and Transprtatin Officials. 444 Nrth Capital Street, N.

More information