Hi All,
I am conducting a consumer tracking study, and would like to create about 25 charts (png image files) directly off of the SPSS file output by my survey system each month. I would then embed those files in various PowerPoint slides. Unfortunately, OMS doesn't let me write out jpg files directly, but I have seen a Python example (Andy W) that seems to do this, but I cannot get my output to arrive. I was experimenting with the "demo.sav" example file in the SPSS folder. This gives me a vertical bar chart: GGRAPH /GRAPHDATASET NAME="graphdataset" VARIABLES=inccat MEAN(jobsat)[name="MEAN_jobsat"] /GRAPHSPEC SOURCE=INLINE. BEGIN GPL SOURCE: s=userSource(id("graphdataset")) DATA: inccat=col(source(s), name("inccat"), unit.category()) DATA: MEAN_jobsat=col(source(s), name("MEAN_jobsat")) GUIDE: axis(dim(1), label("Income category in thousands"), color(color.blue)) GUIDE: axis(dim(2), label("Mean Job satisfaction"), color(color.red)) GUIDE: text.title(label("Average Job Satisfaction")) GUIDE: text.subtitle(label("By Gender")) SCALE: cat(dim(1), include("1.00", "2.00", "3.00", "4.00")) SCALE: linear(dim(2), include(0)) ELEMENT: interval(position(inccat*MEAN_jobsat), shape.interior(shape.square), color(color.green)) END GPL. * My attempt to export the chart (adapted from Andy W's example - thanks Andy). BEGIN PROGRAM Python. import SpssClient SpssClient.StartClient() SpssOutputDoc = SpssClient.GetDesignatedOutputDoc() #creating a list of all the charts OutputItems = SpssOutputDoc.GetOutputItems() Charts = [] for index in range(OutputItems.Size()): OutputItem = OutputItems.GetItemAt(index) if OutputItem.GetType() == SpssClient.OutputItemType.CHART: Charts.append(OutputItem) path = "D:/SAF/2015 Projects" for chart in (Charts): SpssOutputDoc.ClearSelection() #clear prior selections chart.SetSelected(True) #select chart #export chart SpssOutputDoc.ExportCharts(SpssClient.SpssExportSubset.SpssSelected, path, SpssClient.ChartExportFormat.png) END PROGRAM. This produced no output. Any suggestions appreciated. Thanks as always, Bob Walker Surveys & Forecasts, LLC ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
Here is the post Bob is talking about for reference, https://andrewpwheeler.wordpress.com/2014/12/19/repeating-charts-in-spss-for-unique-ids/
Before I show a solution to your problem, the whole point of that exercise was to name the resulting PNG files with a label. If you don't care about the names of the images and are ok with Chart1, Chart2 .... (in the powerpoint people won't see the names of the images) you can just use: OUTPUT EXPORT /PNG IMAGEROOT = "D:/SAF/2015 Projects/Chart.png" (Use PNG over JPEG always for charts in SPSS, I've had good success with EMF vector files as well - which is an option for powerpoint.) My actual use application of that was to draw some egocentric networks of particular chronic offenders for a police department. I wanted the PNG files named with the person so an interested police officer could go and open up/print the name of the particular person. So that being said, below works for me. What I changed (quite simple) was: - added the trailing forward slash to the path string (and of course changed it to a location on my machine) - added a set of labels for the two charts - iterated over both lists instead of just the charts - added path + label in the final line that does the exporting ***************************************. GET FILE = "C:\Program Files\IBM\SPSS\Statistics\22\Samples\English\Employee data.sav". DATASET NAME emp. *Different chart, but should not matter. GGRAPH /GRAPHDATASET NAME="graphdataset" VARIABLES=jobcat MEAN(salary)[name="MEAN_salary"] MISSING=LISTWISE REPORTMISSING=NO /GRAPHSPEC SOURCE=INLINE. BEGIN GPL SOURCE: s=userSource(id("graphdataset")) DATA: jobcat=col(source(s), name("jobcat"), unit.category()) DATA: MEAN_salary=col(source(s), name("MEAN_salary")) GUIDE: axis(dim(1), label("Employment Category")) GUIDE: axis(dim(2), label("Mean Current Salary")) SCALE: cat(dim(1), include("1", "2", "3")) SCALE: linear(dim(2), include(0)) ELEMENT: interval(position(jobcat*MEAN_salary), shape.interior(shape.square)) END GPL. GGRAPH /GRAPHDATASET NAME="graphdataset" VARIABLES=jobcat MEAN(salary)[name="MEAN_salary"] MISSING=LISTWISE REPORTMISSING=NO /GRAPHSPEC SOURCE=INLINE. BEGIN GPL SOURCE: s=userSource(id("graphdataset")) DATA: jobcat=col(source(s), name("jobcat"), unit.category()) DATA: MEAN_salary=col(source(s), name("MEAN_salary")) GUIDE: axis(dim(1), label("Employment Category")) GUIDE: axis(dim(2), label("Chart 2")) SCALE: cat(dim(1), include("1", "2", "3")) SCALE: linear(dim(2), include(0)) ELEMENT: interval(position(jobcat*MEAN_salary), shape.interior(shape.square)) END GPL. * My attempt to export the chart (adapted from Andy W's example - thanks Andy). BEGIN PROGRAM Python. import SpssClient SpssClient.StartClient() SpssOutputDoc = SpssClient.GetDesignatedOutputDoc() #creating a list of all the charts OutputItems = SpssOutputDoc.GetOutputItems() Charts = [] for index in range(OutputItems.Size()): OutputItem = OutputItems.GetItemAt(index) if OutputItem.GetType() == SpssClient.OutputItemType.CHART: Charts.append(OutputItem) path = "//finnhudson/USERS_REDIRECT$/andrew.wheeler/Desktop/Test/" #ending forward slash labels = ["One","Two"] #labels so each chart gets a new name #iterate over both charts and labels for chart,lab in zip(Charts,labels): SpssOutputDoc.ClearSelection() #clear prior selections chart.SetSelected(True) #select chart #export chart, each chart gets a name from the labels list SpssOutputDoc.ExportCharts(SpssClient.SpssExportSubset.SpssSelected, path + lab, SpssClient.ChartExportFormat.png) END PROGRAM. ***************************************. |
In reply to this post by Robert Walker
As discussed, OMS can produce png or jpg
files. If you create your Ppt with pictures inserted with the Insert
> Picture Link option, the Ppt would not contain the image and ought
to display the current file contents. This seems to be flaky in my
version of Ppt (Office 2007). You can also do Insert Object in ppt,
but that doesn't work with graphics.
Jon Peck (no "h") aka Kim Senior Software Engineer, IBM [hidden email] phone: 720-342-5621 From: Bob Walker <[hidden email]> To: Jon K Peck/Chicago/IBM@IBMUS Date: 02/10/2015 09:52 PM Subject: RE: [SPSSX-L] GGRAPH Question Jon, Nice, thank you, didn’t realize that OXML produced that subdirectory. It doesn’t appear that PowerPoint can automatically refresh the images when the data changes, even if the chart name stays the same (as it would if I had built charts in Excel and then embedded them into a set of PowerPoint slides). Not sure how to get around that one, which was my primary objective… Thanks again, Bob Surveys & Forecasts, LLC 2323 North Street Fairfield, CT 06824 +1.203.255.0505 W +1.203.930.2230 F www.safllc.com From: Jon K Peck [mailto:peck@...] Sent: Tuesday, February 10, 2015 8:55 PM To: Bob Walker Subject: Re: [SPSSX-L] GGRAPH Question For starters, why do you say that OMS can't produce jpg charts (or png)? This syntax does that. OMS /SELECT CHARTS /IF COMMANDS=['GGraph'] /DESTINATION FORMAT=OXML IMAGES=YES IMAGEFORMAT=PNG CHARTSIZE=100 CHARTFORMAT=IMAGE TREEFORMAT=IMAGE MODELFORMAT=IMAGE OUTFILE='c:\temp\somepngcharts.xml' VIEWER=YES. * Chart Builder. GGRAPH /GRAPHDATASET NAME="graphdataset" VARIABLES=jobtime jobcat MISSING=LISTWISE REPORTMISSING=NO /GRAPHSPEC SOURCE=INLINE. BEGIN GPL SOURCE: s=userSource(id("graphdataset")) DATA: jobtime=col(source(s), name("jobtime")) DATA: jobcat=col(source(s), name("jobcat"), unit.category()) GUIDE: axis(dim(1), label("Months since Hire")) GUIDE: axis(dim(2), label("Frequency")) GUIDE: legend(aesthetic(aesthetic.color.interior), label("Employment Category")) SCALE: cat(aesthetic(aesthetic.color.interior), include("1", "2", "3")) ELEMENT: interval.stack(position(summary.count(bin.rect(jobtime))), color.interior(jobcat), shape.interior(shape.square)) END GPL. ... OMSEND. The image files are written to a subdirectory whose name is based on the OUTFILE name. If there is still some problem, we can dig into why the Python code is not generating charts. Jon Peck (no "h") aka Kim Senior Software Engineer, IBM peck@... phone: 720-342-5621 From: Bob Walker <rww@...> To: [hidden email] Date: 02/10/2015 06:35 PM Subject: [SPSSX-L] GGRAPH Question Sent by: "SPSSX(r) Discussion" <[hidden email]> Hi All, I am conducting a consumer tracking study, and would like to create about 25 charts (png image files) directly off of the SPSS file output by my survey system each month. I would then embed those files in various PowerPoint slides. Unfortunately, OMS doesn't let me write out jpg files directly, but I have seen a Python example (Andy W) that seems to do this, but I cannot get my output to arrive. I was experimenting with the "demo.sav" example file in the SPSS folder. This gives me a vertical bar chart: GGRAPH /GRAPHDATASET NAME="graphdataset" VARIABLES=inccat MEAN(jobsat)[name="MEAN_jobsat"] /GRAPHSPEC SOURCE=INLINE. BEGIN GPL SOURCE: s=userSource(id("graphdataset")) DATA: inccat=col(source(s), name("inccat"), unit.category()) DATA: MEAN_jobsat=col(source(s), name("MEAN_jobsat")) GUIDE: axis(dim(1), label("Income category in thousands"), color(color.blue)) GUIDE: axis(dim(2), label("Mean Job satisfaction"), color(color.red)) GUIDE: text.title(label("Average Job Satisfaction")) GUIDE: text.subtitle(label("By Gender")) SCALE: cat(dim(1), include("1.00", "2.00", "3.00", "4.00")) SCALE: linear(dim(2), include(0)) ELEMENT: interval(position(inccat*MEAN_jobsat), shape.interior(shape.square), color(color.green)) END GPL. * My attempt to export the chart (adapted from Andy W's example - thanks Andy). BEGIN PROGRAM Python. import SpssClient SpssClient.StartClient() SpssOutputDoc = SpssClient.GetDesignatedOutputDoc() #creating a list of all the charts OutputItems = SpssOutputDoc.GetOutputItems() Charts = [] for index in range(OutputItems.Size()): OutputItem = OutputItems.GetItemAt(index) if OutputItem.GetType() == SpssClient.OutputItemType.CHART: Charts.append(OutputItem) path = "D:/SAF/2015 Projects" for chart in (Charts): SpssOutputDoc.ClearSelection() #clear prior selections chart.SetSelected(True) #select chart #export chart SpssOutputDoc.ExportCharts(SpssClient.SpssExportSubset.SpssSelected, path, SpssClient.ChartExportFormat.png) END PROGRAM. This produced no output. Any suggestions appreciated. Thanks as always, Bob Walker Surveys & Forecasts, LLC ===================== To manage your subscription to SPSSX-L, send a message to LISTSERV@... (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
In reply to this post by Andy W
Thank you Andy and Jon, who each responded with a different fix to my issue. FYI, Jon noted that OMS can, indeed, output as image files using the OXML format option, which I didn't know, as in:
OMS /SELECT CHARTS /IF COMMANDS=['GGraph'] /DESTINATION FORMAT=OXML IMAGES=YES IMAGEFORMAT=PNG CHARTSIZE=100 CHARTFORMAT=IMAGE TREEFORMAT=IMAGE MODELFORMAT=IMAGE OUTFILE='c:\temp\somepngcharts.xml' VIEWER=YES. Many many thanks! Bob Walker Surveys & Forecasts, LLC -----Original Message----- From: SPSSX(r) Discussion [mailto:[hidden email]] On Behalf Of Andy W Sent: Wednesday, February 11, 2015 8:24 AM To: [hidden email] Subject: Re: GGRAPH Question Here is the post Bob is talking about for reference, https://andrewpwheeler.wordpress.com/2014/12/19/repeating-charts-in-spss-for-unique-ids/ Before I show a solution to your problem, the whole point of that exercise was to name the resulting PNG files with a label. If you don't care about the names of the images and are ok with Chart1, Chart2 .... (in the powerpoint people won't see the names of the images) you can just use: OUTPUT EXPORT /PNG IMAGEROOT = "D:/SAF/2015 Projects/Chart.png" (Use PNG over JPEG always for charts in SPSS, I've had good success with EMF vector files as well - which is an option for powerpoint.) My actual use application of that was to draw some egocentric networks of particular chronic offenders for a police department. I wanted the PNG files named with the person so an interested police officer could go and open up/print the name of the particular person. So that being said, below works for me. What I changed (quite simple) was: - added the trailing forward slash to the path string (and of course changed it to a location on my machine) - added a set of labels for the two charts - iterated over both lists instead of just the charts - added path + label in the final line that does the exporting ***************************************. GET FILE = "C:\Program Files\IBM\SPSS\Statistics\22\Samples\English\Employee data.sav". DATASET NAME emp. *Different chart, but should not matter. GGRAPH /GRAPHDATASET NAME="graphdataset" VARIABLES=jobcat MEAN(salary)[name="MEAN_salary"] MISSING=LISTWISE REPORTMISSING=NO /GRAPHSPEC SOURCE=INLINE. BEGIN GPL SOURCE: s=userSource(id("graphdataset")) DATA: jobcat=col(source(s), name("jobcat"), unit.category()) DATA: MEAN_salary=col(source(s), name("MEAN_salary")) GUIDE: axis(dim(1), label("Employment Category")) GUIDE: axis(dim(2), label("Mean Current Salary")) SCALE: cat(dim(1), include("1", "2", "3")) SCALE: linear(dim(2), include(0)) ELEMENT: interval(position(jobcat*MEAN_salary), shape.interior(shape.square)) END GPL. GGRAPH /GRAPHDATASET NAME="graphdataset" VARIABLES=jobcat MEAN(salary)[name="MEAN_salary"] MISSING=LISTWISE REPORTMISSING=NO /GRAPHSPEC SOURCE=INLINE. BEGIN GPL SOURCE: s=userSource(id("graphdataset")) DATA: jobcat=col(source(s), name("jobcat"), unit.category()) DATA: MEAN_salary=col(source(s), name("MEAN_salary")) GUIDE: axis(dim(1), label("Employment Category")) GUIDE: axis(dim(2), label("Chart 2")) SCALE: cat(dim(1), include("1", "2", "3")) SCALE: linear(dim(2), include(0)) ELEMENT: interval(position(jobcat*MEAN_salary), shape.interior(shape.square)) END GPL. * My attempt to export the chart (adapted from Andy W's example - thanks Andy). BEGIN PROGRAM Python. import SpssClient SpssClient.StartClient() SpssOutputDoc = SpssClient.GetDesignatedOutputDoc() #creating a list of all the charts OutputItems = SpssOutputDoc.GetOutputItems() Charts = [] for index in range(OutputItems.Size()): OutputItem = OutputItems.GetItemAt(index) if OutputItem.GetType() == SpssClient.OutputItemType.CHART: Charts.append(OutputItem) path = "//finnhudson/USERS_REDIRECT$/andrew.wheeler/Desktop/Test/" #ending forward slash labels = ["One","Two"] #labels so each chart gets a new name #iterate over both charts and labels for chart,lab in zip(Charts,labels): SpssOutputDoc.ClearSelection() #clear prior selections chart.SetSelected(True) #select chart #export chart, each chart gets a name from the labels list SpssOutputDoc.ExportCharts(SpssClient.SpssExportSubset.SpssSelected, path + lab, SpssClient.ChartExportFormat.png) END PROGRAM. ***************************************. ----- Andy W [hidden email] http://andrewpwheeler.wordpress.com/ -- View this message in context: http://spssx-discussion.1045642.n5.nabble.com/GGRAPH-Question-tp5728639p5728644.html Sent from the SPSSX Discussion mailing list archive at Nabble.com. ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
I would prefer that OMS could directly export the images as well, as opposed to placing them in a superfluous ?ml container file/folder, but the python code in my post did basically what I wanted to do with OMS and giving the files specific names (although it still concatenates a "1" at the end of the file names for my python code.)
|
Is there a current pdf manual on SPSS' implementation of GPL? I didn't see one listed in dev central; a few universities have a link to various versions but can't tell how current they are...
Thanks, Bob Walker Surveys & Forecasts, LLC -----Original Message----- From: SPSSX(r) Discussion [mailto:[hidden email]] On Behalf Of Andy W Sent: Wednesday, February 11, 2015 9:30 AM To: [hidden email] Subject: Re: GGRAPH Question I would prefer that OMS could directly export the images as well, as opposed to placing them in a superfluous ?ml container file/folder, but the python code in my post did basically what I wanted to do with OMS and giving the files specific names (although it still concatenates a "1" at the end of the file names for my python code.) ----- Andy W [hidden email] http://andrewpwheeler.wordpress.com/ -- View this message in context: http://spssx-discussion.1045642.n5.nabble.com/GGRAPH-Question-tp5728639p5728647.html Sent from the SPSSX Discussion mailing list archive at Nabble.com. ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
Yes, under SPSS documentation at
http://www-01.ibm.com/support/docview.wss?uid=swg27038407 Find the GPL Reference Guide. Tony Babinec [hidden email] -----Original Message----- From: SPSSX(r) Discussion [mailto:[hidden email]] On Behalf Of Bob Walker Sent: Friday, February 13, 2015 8:42 AM To: [hidden email] Subject: Re: GGRAPH Question Is there a current pdf manual on SPSS' implementation of GPL? I didn't see one listed in dev central; a few universities have a link to various versions but can't tell how current they are... Thanks, Bob Walker Surveys & Forecasts, LLC -----Original Message----- From: SPSSX(r) Discussion [mailto:[hidden email]] On Behalf Of Andy W Sent: Wednesday, February 11, 2015 9:30 AM To: [hidden email] Subject: Re: GGRAPH Question I would prefer that OMS could directly export the images as well, as opposed to placing them in a superfluous ?ml container file/folder, but the python code in my post did basically what I wanted to do with OMS and giving the files specific names (although it still concatenates a "1" at the end of the file names for my python code.) ----- Andy W [hidden email] http://andrewpwheeler.wordpress.com/ -- View this message in context: http://spssx-discussion.1045642.n5.nabble.com/GGRAPH-Question-tp5728639p5728 647.html Sent from the SPSSX Discussion mailing list archive at Nabble.com. ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
Perfect, thanks Tony!
Regards, Bob Walker Surveys & Forecasts, LLC -----Original Message----- From: SPSSX(r) Discussion [mailto:[hidden email]] On Behalf Of Anthony Babinec Sent: Friday, February 13, 2015 10:18 AM To: [hidden email] Subject: Re: GGRAPH Question Yes, under SPSS documentation at http://www-01.ibm.com/support/docview.wss?uid=swg27038407 Find the GPL Reference Guide. Tony Babinec [hidden email] -----Original Message----- From: SPSSX(r) Discussion [mailto:[hidden email]] On Behalf Of Bob Walker Sent: Friday, February 13, 2015 8:42 AM To: [hidden email] Subject: Re: GGRAPH Question Is there a current pdf manual on SPSS' implementation of GPL? I didn't see one listed in dev central; a few universities have a link to various versions but can't tell how current they are... Thanks, Bob Walker Surveys & Forecasts, LLC -----Original Message----- From: SPSSX(r) Discussion [mailto:[hidden email]] On Behalf Of Andy W Sent: Wednesday, February 11, 2015 9:30 AM To: [hidden email] Subject: Re: GGRAPH Question I would prefer that OMS could directly export the images as well, as opposed to placing them in a superfluous ?ml container file/folder, but the python code in my post did basically what I wanted to do with OMS and giving the files specific names (although it still concatenates a "1" at the end of the file names for my python code.) ----- Andy W [hidden email] http://andrewpwheeler.wordpress.com/ -- View this message in context: http://spssx-discussion.1045642.n5.nabble.com/GGRAPH-Question-tp5728639p5728 647.html Sent from the SPSSX Discussion mailing list archive at Nabble.com. ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
In reply to this post by Anthony Babinec
Note that the GPL Reference is fully integrated
into the regular help. See the References section in the outline.
Jon Peck (no "h") aka Kim Senior Software Engineer, IBM [hidden email] phone: 720-342-5621 From: Anthony Babinec <[hidden email]> To: [hidden email] Date: 02/13/2015 08:19 AM Subject: Re: [SPSSX-L] GGRAPH Question Sent by: "SPSSX(r) Discussion" <[hidden email]> Yes, under SPSS documentation at http://www-01.ibm.com/support/docview.wss?uid=swg27038407 Find the GPL Reference Guide. Tony Babinec [hidden email] -----Original Message----- From: SPSSX(r) Discussion [[hidden email]] On Behalf Of Bob Walker Sent: Friday, February 13, 2015 8:42 AM To: [hidden email] Subject: Re: GGRAPH Question Is there a current pdf manual on SPSS' implementation of GPL? I didn't see one listed in dev central; a few universities have a link to various versions but can't tell how current they are... Thanks, Bob Walker Surveys & Forecasts, LLC -----Original Message----- From: SPSSX(r) Discussion [[hidden email]] On Behalf Of Andy W Sent: Wednesday, February 11, 2015 9:30 AM To: [hidden email] Subject: Re: GGRAPH Question I would prefer that OMS could directly export the images as well, as opposed to placing them in a superfluous ?ml container file/folder, but the python code in my post did basically what I wanted to do with OMS and giving the files specific names (although it still concatenates a "1" at the end of the file names for my python code.) ----- Andy W [hidden email] http://andrewpwheeler.wordpress.com/ -- View this message in context: http://spssx-discussion.1045642.n5.nabble.com/GGRAPH-Question-tp5728639p5728 647.html Sent from the SPSSX Discussion mailing list archive at Nabble.com. ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD ===================== To manage your subscription to SPSSX-L, send a message to [hidden email] (not to SPSSX-L), with no body text except the command. To leave the list, send the command SIGNOFF SPSSX-L For a list of commands to manage subscriptions, send the command INFO REFCARD |
Free forum by Nabble | Edit this page |