in our surveys the subjects get random passwords.
The passwords have to be generated with SPSS (17). Plus, random passwords should not be too long (not more than 8 digits, since subjects might have to type them in) and should consist of a large number of differnt characters (letters, numbers, special characters) and all passwords have to be different. I checked Raynald's for a syntax example. Has anyone an idea or even a syntax. Thanks
Dr. Frank Gaeth
|
Hi Frank,
try the following syntax: input program. string passwd (a8). loop #i = 1 to 500. loop. compute #numbers = 0. loop #j = 1 to 8.
compute #pos = trunc(uniform(75))+1. compute substr(passwd,#j,1) =substr('0123456789abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz!@#$%^&*()<>?', #pos, 1). if (#pos <= 10) #numbers = #numbers + 1.
end loop. end loop if (#numbers > 1). end case. end loop. end file. end input program. exe. hth, Vlad On Thu, Jul 7, 2011 at 10:46 AM, drfg2008 <[hidden email]> wrote: in our surveys the subjects get random passwords. |
well, that was fast!
works fine, Thanks
Dr. Frank Gaeth
|
In reply to this post by vlad simion
|
|
Hi Dale,
Yes, stata does have a routine. I don't recall it's name but
maybe check the stata website. I don't use stata but somebody whose work i was
reviewing did use it. The project had two groups so i don't know whether the
stata routine can accomodate three groups.
Gene Maguin From: SPSSX(r) Discussion [mailto:[hidden email]] On Behalf Of Dale Glaser Sent: Thursday, July 07, 2011 7:01 AM To: [hidden email] Subject: Matching/propensity scores for 3 groups
|
Hey, folks,
Is there a way to export SPSS output to COGNOS in a user-friendly fashion such that tables and graphs can be distributed broadly via Cognos in a corporate setting where access to SPSS is very limited? We currently distribute SPSS tables and graphs in Excel format, sometimes PowerPoint, but I'm wondering if Cognos might be better. I'll follow up on any suggestions or leads. Thanks, King Douglas American Airlines Customer Research ===================== 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 Maguin, Eugene
I think is psmatch2.ado Also there are other STATA routines in the Handbook on Impact Evaluation edited by the World Bank: http://www-wds.worldbank.org/external/default/WDSContentServer/WDSP/IB/2009/12/10/000333037_20091210014322/Rendered/PDF/520990PUB0EPI1101Official0Use0Only1.pdf But I think they are only for two groups Andrés Mg. Andrés Burga León Coordinador de Análisis e Informática Unidad de Medición de la Calidad Educativa Ministerio de Educación del Perú Calle El Comercio s/n (espalda del Museo de la Nación) Lima 41 Perú Teléfono 615-5840
Hi Dale, Yes, stata does have a routine. I don't recall it's name but maybe check the stata website. I don't use stata but somebody whose work i was reviewing did use it. The project had two groups so i don't know whether the stata routine can accomodate three groups. Gene Maguin From: SPSSX(r) Discussion [[hidden email]] On Behalf Of Dale Glaser Sent: Thursday, July 07, 2011 7:01 AM To: [hidden email] Subject: Matching/propensity scores for 3 groups
|
In reply to this post by Dale Glaser
Could you elaborate on what you mean by
matching on three groups? Why couldn't you compute the propensity
scores based on all the relevent variables and then match on those scores
using your macro or the FUZZY extension command?
Jon Peck Senior Software Engineer, IBM [hidden email] new phone: 720-342-5621 From: Dale Glaser <[hidden email]> To: [hidden email] Date: 07/07/2011 01:04 PM Subject: [SPSSX-L] Matching/propensity scores for 3 groups Sent by: "SPSSX(r) Discussion" <[hidden email]>
|
In reply to this post by Dale Glaser
Dale,
Have you considered generating a propensity score for each person and using the score as a covariate/weight in subsequent analysis? John From: Dale Glaser <[hidden email]> To: [hidden email] Sent: Thu, July 7, 2011 7:01:04 AM Subject: Matching/propensity scores for 3 groups
|
In reply to this post by King Douglas
I 'heard tell' several years ago that there was a program to convert
scripts written for SPSS version 15 (Visual Basic) so they would run with Sax Basic (or is it WinWrap Basic now)? Is that true and, if so, where do we get such a program and how well does it convert? These scripts do things like: send output into Excel tables in a specific manner, open up a text document in Word and find/replace extra commas so that the csv file import works correctly, read from the output significance tests or frequencies and send these back into the syntax. Any hope of finding a translator that successfully translates those types of procedures? Or were my ears only hearing what they wanted to hear? Thanks! John Lee -- John Lee P. Holmes Survey Operations Manager Acting Senior Research Analyst Center for Survey Research A Unit of the Weldon Cooper Center for Public Service Mess Mail: PO Box 400767 University of Virginia http://surveys.virginia.edu Work tel: 434-243-5229 (w/Voice Mail) CATI Lab: 434-243-5226 Facsimile: 434-982-5536 ===================== 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 |
There is no conversion script for older
SaxBasic scripts, because most strings should not require any changes.
There are a few exceptions:
If you have autoscripts, a small change detailed under the Scripting help is required, If you are invoking Statistics externally, you need to change the application name to Application16 (even for v17 and later) The library names used as references by external apps have changed The recent versions of Basic are locale sensitive. The main issue that might need to be addressed in that case is that converting strings to numbers uses a locale-sensitive decimal point. The old Igraph and Map apis were removed. HTH, (from France) Jon Peck Senior Software Engineer, IBM [hidden email] new phone: 720-342-5621 From: "[hidden email]" <[hidden email]> To: [hidden email] Date: 07/07/2011 11:59 PM Subject: Re: [SPSSX-L] SPSS 15 scripts conversion for 19 Sent by: "SPSSX(r) Discussion" <[hidden email]> I 'heard tell' several years ago that there was a program to convert scripts written for SPSS version 15 (Visual Basic) so they would run with Sax Basic (or is it WinWrap Basic now)? Is that true and, if so, where do we get such a program and how well does it convert? These scripts do things like: send output into Excel tables in a specific manner, open up a text document in Word and find/replace extra commas so that the csv file import works correctly, read from the output significance tests or frequencies and send these back into the syntax. Any hope of finding a translator that successfully translates those types of procedures? Or were my ears only hearing what they wanted to hear? Thanks! John Lee -- John Lee P. Holmes Survey Operations Manager Acting Senior Research Analyst Center for Survey Research A Unit of the Weldon Cooper Center for Public Service Mess Mail: PO Box 400767 University of Virginia http://surveys.virginia.edu Work tel: 434-243-5229 (w/Voice Mail) CATI Lab: 434-243-5226 Facsimile: 434-982-5536 ===================== 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 |