The Political Methodologist Newsletter of the Political Methodology Section American Political Science Association Volume 13, Number 2, Fall 2005

Total Page:16

File Type:pdf, Size:1020Kb

The Political Methodologist Newsletter of the Political Methodology Section American Political Science Association Volume 13, Number 2, Fall 2005 The Political Methodologist Newsletter of the Political Methodology Section American Political Science Association Volume 13, Number 2, Fall 2005 Editors: Adam J. Berinsky, Massachusetts Institute of Technology [email protected] Michael C. Herron, Dartmouth College [email protected] Jeffrey B. Lewis, University of California Los Angeles [email protected] Editorial Assistant: Matthew Atkinson, University of California Los Angeles [email protected] Contents Notes From the Editors Welcome back to TPM. Our issue leads off with three arti- Notes from the Editors 1 cles in the computing section. Luke Keele walks us through 3-D graphics in R. Based on his own process of trial and error, this article will be useful for novices and experi- Computing and Software 2 enced users alike. We then move to an overview of the Luke Keele: 3-D Graphics in R ........... 2 new version of STATA reviewed, as usual, by Neal Beck. Finally, Christopher Lawrence and Dick Eddelbuttel intro- Nathaniel Beck: Stata 9: Another First Look . 7 duce Quantian–an open source computing package. Christopher N. Lawrence and Dirk Eddelbuettel: We then turn to two articles about a topic near and Quantian: A Comprehensive Statistical Com- dear (financially speaking) to all our hearts—data entry. puting Environment . 10 Michael Herron discusses how to use Xemacs macros to con- vert ASCII data files to formats that can be easily imported into spreadsheets or statistical packages. Seth Masket, in Data Entry 13 turn, describes the ins and outs of hiring overseas profes- Michael C. Herron: Using XEmacs Macros to sionals to input your data. Process ASCII Data Files . 13 We also have in this issue a review of Box- Seth Masket: Data Entry: Going Pro . 19 Steffensmeier and Jones’ recent book on Event History Mod- els. This book is one of the first in the Analytical Methods for Social Research series, published by Cambridge Univer- Book Reviews 20 sity Press. We plan to review additional titles from this series in future issues. Tze Kwang Teo: Review of Janet M. Box- Steffensmeier and Bradford S. Jones’ Event We close with a note from our section President, History Modeling: A Guide for Social Scien- Janet Box-Steffensmeier, and the call for participation for tists ....................... 20 the 2006 Society for Political Methodology Summer Meet- ing. The next issue of TPM is beginning to take shape, Section Activities 22 but we are always on the lookout for more material. Your submissions and ideas for topics to address are most wel- A note from our Section President . 22 come. Call for Participation: the 2006 Society for Politi- cal Methodology Summer Meeting . 22 The Editors 2 The Political Methodologist, vol. 13, no. 2 Computing and Software 3-D Graphics in R Luke Keele The Ohio State University [email protected] Three dimensional graphics may not be widely used data: two which define the values of the x and y axes and in published work, but in political methodology, three– one for the quantity of interest to be plotted. For users fa- dimensional plots have a number of uses. The plotting of miliar with persp, this is an important difference. In persp, likelihoods and response surfaces from Monte Carlo exper- the response variable needs to be in matrix not vector form. iments are examples of where three–dimensional plots are To use wireframe, the response variable must be in vec- quite useful. tor form. Fortunately, for many users it is probably more The options for software are not extensive, however. convenient to have data in vector form. Excel can produce such graphs but the quality of the plots is As an example, I use data from a Monte Carlo ex- not excellent. One would assume that R would be a natural periment on misspecification in an OLS regression. I want choice for producing such plots given R’s generally excellent to plot the bias as a function of two parameters: α and φ. graphing capabilities. And it is a good choice, but to get I need my data in R to take the following form: publication quality 3-D graphics requires more work than typically required when plotting in R. What I hope to do, > ols[1:20,] here, is save others the time it took me to figure out how to a bias phi produce quality graphics with the wireframe command. 1 0.05 0.01716063 0.05 The standard 3-D plot command in R is persp. 2 0.10 0.04543059 0.05 While one can produce good looking plots with persp, it 3 0.15 0.06780803 0.05 has a couple of key deficiencies when it comes to producing 4 0.20 0.09976802 0.05 publication quality plots. First, the axes do not have the 5 0.25 0.12303042 0.05 full functionality typical in most R plots. One cannot adjust 6 0.30 0.15644003 0.05 the tick marks and must rely on automatic axis creation. 7 0.35 0.19504754 0.05 Second, one cannot use plotmath characters as axis labels. 8 0.40 0.22869483 0.05 Therefore, one is stuck with “Alpha” instead of “α” for axis 9 0.45 0.27677437 0.05 labels. While these may seem like small deficiencies, they 10 0.50 0.32982011 0.05 are problematic when producing publication quality plots. 11 0.55 0.39086068 0.05 The next option in R is to use the wireframe com- 12 0.60 0.45282179 0.05 mand from the lattice package. The lattice library is 13 0.65 0.54175071 0.05 an R implementation of the trellis graphics package in 14 0.70 0.61998347 0.05 S-plus. While the lattice package can do a variety of 15 0.75 0.72936067 0.05 plots, it is primarily designed to plot relationships between 16 0.05 0.02583256 0.10 three variables. Typically, this is done with the xyplot 17 0.10 0.04417769 0.10 command to generate scatterplots between two variables 18 0.15 0.06806339 0.10 conditional on the values of a third variable. The focus 19 0.20 0.09310019 0.10 on this type of plot is unfortunate, since it means that 20 0.25 0.12514266 0.10 surface plots as produced in wireframe tend to be over- looked in the documentation. In fact, the documentation for all the lattice graphics commands is sparse, and for The two parameters, α and φ, both run from 0.05 1 wireframe is particularly thin. This is doubly unfortunate to 0.75 in increments of 0.05. If one only has the response since lattice\trellis commands tend to be complex. variable in vector format, the expand.grid command can To start with, let’s discuss how one’s data needs to be used to create the parameter vectors. See the R docu- be set up. For a single 3-D plot, one needs three vectors of mentation or Fox (2002) for examples. Notice that I have used close increments between the values of α and φ. This 1One can use the freely available trellis manual when using lattice, but it too only gives sparse consideration to the the wireframe command. The Political Methodologist, vol. 13, no. 2 3 will make the surface plot smoother. Next, I need to load use the following: zlab = list(label = "Bias", rot = the lattice package: 90). This is useful when the z-axis label is very long, or to rotate the x- and y-axis labels to be parallel to the axis > library(lattice) when the plot is at an angle. Other changes to the axis la- bels can be made in a similar fashion. See the next plot for To change the background color of the plotting area an example. to white from the default grey, I use a high level plotting Let’s start to clean the plot up. First, you probably command: noticed the box that goes around the outside of the entire plot. Removing it is quite easy, but finding the command > trellis.par.set(theme = col.whitebg()) to do so is not. It is controlled by a high level command for the axes. To remove it, I use trellis.par.set. I also The command trellis.par.set can be used to clean up the axis labeling in the next example: set a large number of graphing parameters. A call to trellis.par.get() will list at least 50 default graphing > trellis.par.set("axis.line", parameters and their values. Now let’s produce a basic 3-D + list(col="transparent")) plot with the wireframe command: > fig2 <- wireframe(bias ~ a * phi, > fig1 <- wireframe(bias ~ a * phi, + data = ols, + data = ols, screen = + screen = list(z = -245, x = -75), + list(z = -245, x = -75), + xlab = expression(paste(alpha)), + xlab = expression(paste(alpha)), + ylab = expression(paste(phi)), + ylab = expression(paste(phi)), + zlab = list(label = "Bias", + zlab = "Bias", + font = 1, cex = 0.60), + zlim = range(seq(0.0, 0.85, + zlim = range(seq(0.0, 0.85, + by=0.20))) + by=0.20))) Bias Bias α α φ φ Figure 2: Removing The Border and Changing Axis Features Figure 1: Basic Plot The call to trellis.par.set removes the box around the plot. Notice now that the axis tick marks are Many of the normal plotting options such as xlab also gone. This is because the command I used to remove and ylab work as expected. One obvious addition to these the border is an axis command. We’ll get the tick marks commands is zlab and zlim.
Recommended publications
  • The Bioinformatics Playground
    Gearing for bioinformatics Gearing for bioinformatics Bela Tiwari and Dawn Field explore the tools and facilities that ioinformatics’ is a buzz word that is Projects with enough funding are able to hire users will depend on the system, how they will becoming increasingly audible in the dedicated system administrators to provide access it, etc. Live CD or DVD distributions may can be used by the budding open source bioinformatician ‘BLinux world. Fast, economical, sustainable bioinformatics computing systems, be good for an individual and for demonstration flexible, and extensible computing power is but many of us are not that lucky and have to purposes, but they are probably not the right making Linux increasingly attractive to scientists go it alone. choice for the provision of tools to a whole in many areas of research, including biology. To add to the challenge, much bioinformatics department. More generally, the open source movement has software is written by academics, and while greatly benefited biological research; the most there are some very good, well tested packages LIVE DISTRIBUTIONS publicised project being the publicly funded out there, there are also many that were Live Linux distributions are a relatively new effort to sequence and make freely available the intended to answer a particular question, on a phenomenon and offer some big advantages. human genome. Less well publicised is the huge particular machine, for a particular group. Such You don’t have to install anything to run them. amount of biological data that can be freely packages were often not built with portability, Just slot the CD or DVD into the drive and boot accessed.
    [Show full text]
  • Linux Distributions for Bioinformatics
    EMBnet. news 15.3 REVIEWS 35 run as a virtual machine, in parallel with the host Linux distributions for operating system, a feature which has the ad- vantage of giving occasional users or students bioinformatics: the possibility to use their usual environments while becoming familiar with a new operating an update system. This is reflected in the Linux distributions for bioinformatics that we have reviewed in this article. A trend that has been noticed in respect with the review we made in 2007 is the tenden- cy to use Ubuntu as base distribution which is in fact replacing Knoppix and to provide the bio- informatics bench environment also as a virtual machine which can be run inside the popular VMWare environment in parallel with the host op- erating system. While reviewing the distributions in this article we have paid particular attention to 1 Antonia Rana and Fabrizio Foscarini their user friendliness and ease of use. Joint Research Centre, European Commission Bio-Linux Bio-Linux [4], developed and distributed by the NERC Environmental Bioinformatics Centre, has Introduction evolved since our review in 2007, its home page The article provides an updated view on the has also changed. Its developers describe it as world of Linux distributions tailored for bioinformat- “…a fully featured, powerful, configurable and ics analysis. The main driver for producing these easy to maintain bioinformatics workstation ” and distributions is to provide an easy-to-use, user in fact it is rich with applications and documen- friendly environment for non IT specialised users tation. In its current versions, 5.0, the most nota- without strong requirements on the knowledge ble new features are the possibility to boot it from of the technology.
    [Show full text]
  • Debian \ Amber \ Arco-Debian \ Arc-Live \ Aslinux \ Beatrix
    Debian \ Amber \ Arco-Debian \ Arc-Live \ ASLinux \ BeatriX \ BlackRhino \ BlankON \ Bluewall \ BOSS \ Canaima \ Clonezilla Live \ Conducit \ Corel \ Xandros \ DeadCD \ Olive \ DeMuDi \ \ 64Studio (64 Studio) \ DoudouLinux \ DRBL \ Elive \ Epidemic \ Estrella Roja \ Euronode \ GALPon MiniNo \ Gibraltar \ GNUGuitarINUX \ gnuLiNex \ \ Lihuen \ grml \ Guadalinex \ Impi \ Inquisitor \ Linux Mint Debian \ LliureX \ K-DEMar \ kademar \ Knoppix \ \ B2D \ \ Bioknoppix \ \ Damn Small Linux \ \ \ Hikarunix \ \ \ DSL-N \ \ \ Damn Vulnerable Linux \ \ Danix \ \ Feather \ \ INSERT \ \ Joatha \ \ Kaella \ \ Kanotix \ \ \ Auditor Security Linux \ \ \ Backtrack \ \ \ Parsix \ \ Kurumin \ \ \ Dizinha \ \ \ \ NeoDizinha \ \ \ \ Patinho Faminto \ \ \ Kalango \ \ \ Poseidon \ \ MAX \ \ Medialinux \ \ Mediainlinux \ \ ArtistX \ \ Morphix \ \ \ Aquamorph \ \ \ Dreamlinux \ \ \ Hiwix \ \ \ Hiweed \ \ \ \ Deepin \ \ \ ZoneCD \ \ Musix \ \ ParallelKnoppix \ \ Quantian \ \ Shabdix \ \ Symphony OS \ \ Whoppix \ \ WHAX \ LEAF \ Libranet \ Librassoc \ Lindows \ Linspire \ \ Freespire \ Liquid Lemur \ Matriux \ MEPIS \ SimplyMEPIS \ \ antiX \ \ \ Swift \ Metamorphose \ miniwoody \ Bonzai \ MoLinux \ \ Tirwal \ NepaLinux \ Nova \ Omoikane (Arma) \ OpenMediaVault \ OS2005 \ Maemo \ Meego Harmattan \ PelicanHPC \ Progeny \ Progress \ Proxmox \ PureOS \ Red Ribbon \ Resulinux \ Rxart \ SalineOS \ Semplice \ sidux \ aptosid \ \ siduction \ Skolelinux \ Snowlinux \ srvRX live \ Storm \ Tails \ ThinClientOS \ Trisquel \ Tuquito \ Ubuntu \ \ A/V \ \ AV \ \ Airinux \ \ Arabian
    [Show full text]
  • An Integrated Live Linux Distribution for the Bioinformatics Community Guangchuang Yu1†, Li-Gen Wang2,3†, Xiao-Hua Meng3 and Qing-Yu He1*
    Yu et al. BMC Research Notes 2012, 5:360 http://www.biomedcentral.com/1756-0500/5/360 TECHNICAL NOTE Open Access LXtoo: an integrated live Linux distribution for the bioinformatics community Guangchuang Yu1†, Li-Gen Wang2,3†, Xiao-Hua Meng3 and Qing-Yu He1* Abstract Background: Recent advances in high-throughput technologies dramatically increase biological data generation. However, many research groups lack computing facilities and specialists. This is an obstacle that remains to be addressed. Here, we present a Linux distribution, LXtoo, to provide a flexible computing platform for bioinformatics analysis. Findings: Unlike most of the existing live Linux distributions for bioinformatics limiting their usage to sequence analysis and protein structure prediction, LXtoo incorporates a comprehensive collection of bioinformatics software, including data mining tools for microarray and proteomics, protein-protein interaction analysis, and computationally complex tasks like molecular dynamics. Moreover, most of the programs have been configured and optimized for high performance computing. Conclusions: LXtoo aims to provide well-supported computing environment tailored for bioinformatics research, reducing duplication of efforts in building computing infrastructure. LXtoo is distributed as a Live DVD and freely available at http://bioinformatics.jnu.edu.cn/LXtoo. Keywords: Bioinformatics, Software, Linux, Operating system Findings bioinformatics expertise, and thus often face data ana- The completion of the human genome project [1] lysis bottleneck, leading to the slow progress of bio- fuelled the spark of many post-omics technologies such logical research. as massively parallel sequencing, genotyping and proteo- Building tailored computing solutions requires specia- mics. These technologies dramatically increase biological lized knowledge. While this challenge can be overcome data generation, and the biological data throughput has by using free and open source software (FOSS) [4], the been increasing at a rate exceeding Moore’s Law [2].
    [Show full text]
  • KNOPPIX/Math
    KNOPPIX/Math: Portable and distributable collection of mathematical software and free documents Tatsuyoshi Hamada (Fukuoka University) Kuniyasu Suzaki (AIST) Kengo Iijima (AIST) Arimitsu Shikoda (Tohoku Gakuin University) ICMS2006 in Castro Urdiales 2006.09.02 1960s DEC PDF-7 http://research.microsoft.com/~gbell/Digital/timeline/1964-3.htm 1970s DECstation PDP-8 http://research.microsoft.com/~gbell/Digital/timeline/1977-2.htm A prototype of the Apple personal computer http://www.150.si.edu/chap9/9ap_le.htm 1980s IBM PC 5150 http://www-03.ibm.com/ibm/history/exhibits/pc/pc_1.html Apple IIe http://www.old-computers.com/museum/computer.asp?st=1&c=83 1990s Apple SE/30 http://www.apple-history.com/?page=gallery&model=se30 IBM ThinkPad 700C http://www-06.ibm.com/jp/event/museum/rekishi/92_tp.html 1995.08.24 1991.08.25 Microsoft Windows 95 Linus's first announcement 1991.10.05 Linux 0.0.2 Recently Panasonic Toughbook eLite W4 with Microsoft Windows XP Professional 12.1" XGA Color LCD Display, built-in DVD/CD-RW, only 2.8 lbs (1270g). http://www.lenovo.com/us/en/ http://www.sharp.co.jp/products/slc760/index.html Mathematicians need TeX system for writing papers. Mathematical software for calculating and visualization http://www.lg.fukuoka-u.ac.jp/~ynagata/latex/texlion.html Dynagraph Mathematicians need to communicate other mathematicians for deepening our investigations for getting new ideas Conferences and Workshops held in foreign countries Laptop computers become a ubiquitous parts We want to read and write e-mail messages in our native language. We have to set up and configure the desktop environment on our laptops.
    [Show full text]
  • PAIPIX@ : from Desktop to Data Servers
    PAIPIX@ : From Desktop to Data Servers http://www.paipix.org ●Old PAIPIX Live - “One of those Knoppix things” ● present usage at IM and the plan ● infrastructure at IM ● Updated Requirements and Developments ● New hardware systems at IM ●Present PAIPIX Installer/Live ● Debian distribution ● Debian installer and live ● PAIPIX packages and repositories ● The support for the meteorology tools ●Conclusions A. & L. Amorim ECMWF 11th Workshop on Meteorological Operational Systems - 16/11/2007 What was PAIPIX? Started as live Linux for scientific appl.: in 2004 -“one of those Knoppix like stuff” ● End 2004 – Complete system en,pt,es,fr,de,it version 3.7 - 2 GB live image used until today at IM ... ● End 2005 – Version 5 to support update of the installed system changed to be built from “Kanotix” ... ●2006 – Transition version 6. Shortcomings: ● Debian based but packed by a very small community ● The installer was a bit unstable (application specific) ● PAIPIX was “remastered” - depended on initial image A. & L. Amorim ECMWF 11th Workshop on Meteorological Operational Systems - 16/11/2007 Some evaluation of “old” PAIPIX news 20.06.2005 http://www.heise.de/english/newsticker/news/60800 “Moreover, in Version 4.0 a number of expansions have been integrated that have flowed back to Knoppix from the Knoppix-based distributions Kanotix, Quantian, Paipix and Freeduc. With, for example, the Kanotix hardware support for ISDN and DSL adapters from AVM, an improved hard disk installer, scientific software from Quantian and Paipix and learning software for children from Freeduc among them.” http://distrowatch.com/index.php?distribution=paipix http://quebecos.com/index.php? option=com_content&task=view&id=511&Itemid=2 Meteo.
    [Show full text]
  • GNU/Linux Distro Timeline LEAF Version 10.9 Skolelinux Lindows Linspire Authors: A
    1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 Libranet Omoikane (Arma) Gibraltar GNU/Linux distro timeline LEAF Version 10.9 Skolelinux Lindows Linspire Authors: A. Lundqvist, D. Rodic - futurist.se/gldt Freespire Published under the GNU Free Documentation License MEPIS SimplyMEPIS Impi Guadalinex Clonezilla Live Edubuntu Xubuntu gNewSense Geubuntu OpenGEU Fluxbuntu Eeebuntu Aurora OS Zebuntu ZevenOS Maryan Qimo wattOS Element Jolicloud Ubuntu Netrunner Ylmf Lubuntu eBox Zentyal Ubuntu eee Easy Peasy CrunchBang gOS Kiwi Ubuntulite U-lite Linux Mint nUbuntu Kubuntu Ulteo MoLinux BlankOn Elive OS2005 Maemo Epidemic sidux PelicanHPC Inquisitor Canaima Debian Metamorphose Estrella Roja BOSS PureOS NepaLinux Tuquito Trisquel Resulinux BeatriX grml DeadCD Olive Bluewall ASLinux gnuLiNex DeMuDi Progeny Quantian DSL-N Damn Small Linux Hikarunix Damn Vulnerable Linux Danix Parsix Kanotix Auditor Security Linux Backtrack Bioknoppix Whoppix WHAX Symphony OS Knoppix Musix ParallelKnoppix Kaella Shabdix Feather KnoppMyth Aquamorph Dreamlinux Morphix ZoneCD Hiwix Hiweed Deepin Kalango Kurumin Poseidon Dizinha NeoDizinha Patinho Faminto Finnix Storm Corel Xandros Moblin MeeGo Bogus Trans-Ameritech Android Mini Monkey Tinfoil Hat Tiny Core Yggdrasil Linux Universe Midori Quirky TAMU DILINUX DOSLINUX Mamona Craftworks BluePoint Yoper MCC Interim Pardus Xdenu EnGarde Puppy Macpup SmoothWall GPL SmoothWall Express IPCop IPFire Beehive Paldo Source Mage Sorcerer Lunar eIT easyLinux GoboLinux GeeXboX Dragora
    [Show full text]
  • Cooperatin in Parallel Lessons from Ubuntu and Debian
    Cooperatin In Parallel Lessons From Ubuntu and Debian Benjamin Mako Hill [email protected] Massachusetts Institute of Technology Ubuntu Project Debian Project Benjamin Mako Hill http://mako.cc The World of Debian Customizers There are 200+ distributions derived from Debian. AbulÉdu • Adamantix • AGNULA GNU/Linux Audio Distribution • ANTEMIUM Linux • Arabbix • ARMA aka Omoikane GNU/Linux • ASLinux • Auditor Security Linux • Augustux • B2D Linux • BEERnix • Biadix • BIG LINUX • Bioknoppix • BlackRhino • Bluewall GNU/Linux • Bonzai Linux • BrlSpeak • Càtix • CensorNet • Clusterix • ClusterKNOPPIX • Condorux • Damn Small Linux • Danix • DebXPde • eduKnoppix • ERPOSS • ESware • Euronode • FAMELIX • Feather Linux • Flonix • Vital Data Forensic or Rescue Kit (FoRK) • Freeduc-cd • GEOLivre Linux • Gibraltar Firewall • GNIX-Vivo • Gnoppix Linux • gnuLinEx • GNU/Linux Kinneret • GNUstep Live CD • grml • Guadalinex • Helix • Hiweed Linux • Impi Linux • Julex • K-DEMar • Kaella • Knoppix Linux Azur • Kalango Linux • KANOTIX • KlusTriX • knopILS • Knoppel • Knoppix • Knoppix 64 • Knoppix STD • KnoppiXMAME • KnoppMyth • Kurumin Linux • LAMPPIX • Libranet GNU/Linux • LIIS Linux • LinEspa • Linspire • Linux Live Game Project • Linux Loco • LinuxDefender Live! CD • Linuxin • LiVux • Local Area Security Linux (L.A.S.) • Luinux • Luit Linux • MAX: Madrid_Linux • Mediainlinux • MEPIS Linux • Metadistro-Pequelin • MIKO GNYO/Linux • Morphix • Munjoy Linux • Nature's Linux • NordisKnoppix • OGo Knoppix • Oralux • Overclockix • Quantian • Penguin Sleuth • PHLAK
    [Show full text]
  • Live Cd Cluster Performance
    Live cd cluster performance Haronil Estevez∗ Department of Computer Science Columbia University, New York Advisor: Professor Stephen A. Edwards May 10, 2004 Contents 1 Abstract 2 2 Background 2 2.1 Knoppix . 2 2.2 Quantian . 2 2.3 OpenMosix . 3 2.4 PIPT . 3 2.5 MPI ........................................ 3 3 Testing Setup 4 3.1 PC’s . 4 3.2 LAN . 4 3.3 Test Data . 4 3.4 Selection of PIPT Test Routines . 4 3.5 PIPT process migration . 6 4 Knoppix Test Results 6 ∗[email protected] 1 5 Quantian Test Results 8 5.1 Process migration . 9 6 Conclusion 11 7 References 11 8 Acknowledgements 12 1 Abstract In this paper, I present a performance comparison of two linux live cd distributions, Knoppix (v.3.3) and Quantian (v 0.4.96). The library used for performance evaluation is the Parallel Image Processing Toolkit (PIPT), a software library that contains several parallel image processing routines. A set of images was chosen and a batch job of PIPT routines were run and timed using both live cd distributions. The point of comparison between the two live cds was the total time the batch job required for completion. 2 Background 2.1 Knoppix Knoppix is a debian linux based live cd created by Klaus Knopper. It is a bootable CD with a collection of GNU/Linux software, automatic hardware detection, and support for many peripherals. Running Knoppix on a PC requires only 16 MB of RAM for text mode or 96 MB of RAM for graphics mode. The Knoppix CD holds up to 2 GB of executable software and requires no installation.
    [Show full text]
  • O'reilly Knoppix Hacks (2Nd Edition).Pdf
    SECOND EDITION KNOPPIX HACKSTM Kyle Rankin Beijing • Cambridge • Farnham • Köln • Paris • Sebastopol • Taipei • Tokyo Knoppix Hacks,™ Second Edition by Kyle Rankin Copyright © 2008 O’Reilly Media, Inc. All rights reserved. Printed in the United States of America. Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472. O’Reilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (safari.oreilly.com). For more information, contact our corporate/institutional sales department: (800) 998-9938 or [email protected]. Editor: Brian Jepson Cover Designer: Karen Montgomery Production Editor: Adam Witwer Interior Designer: David Futato Production Services: Octal Publishing, Inc. Illustrators: Robert Romano and Jessamyn Read Printing History: October 2004: First Edition. November 2007: Second Edition. Nutshell Handbook, the Nutshell Handbook logo, and the O’Reilly logo are registered trademarks of O’Reilly Media, Inc. The Hacks series designations, Knoppix Hacks, the image of a pocket knife, “Hacks 100 Industrial-Strength Tips and Tools,” and related trade dress are trademarks of O’Reilly Media, Inc. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and O’Reilly Media, Inc. was aware of a trademark claim, the designations have been printed in caps or initial caps. While every precaution has been taken in the preparation of this book, the publisher and author assume no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. Small print: The technologies discussed in this publication, the limitations on these technologies that technology and content owners seek to impose, and the laws actually limiting the use of these technologies are constantly changing.
    [Show full text]
  • From Famine to Feast
    COMMENTARY Open software for biologists: from famine to feast Dawn Field, Bela Tiwari, Tim Booth, Stewart Houten, Dan Swan, Nicolas Bertrand & Milo Thurston Developing and deploying specialized computing systems for specific research communities is achievable, cost effective and has wide-ranging benefits. very research scientist who depends daily which is facing an exponentially increasing del- systems, software and their hardware indepen- Eon computers to store, manipulate and uge of data, these attributes are not only desir- dence that is now transforming the accessibility http://www.nature.com/naturebiotechnology analyze data wants to arrive at work to a able but increasingly essential. In particular, and affordability of such systems. smoothly working computer system. Anything the advent of ‘omic technologies (genomics, less than an up-to-date, complete and bug- transcriptomics, proteomics, metabolomics) From famine to feast free system can steal precious time away from is presenting biologists and bioinformaticians FOSS software lends itself well to distribu- research. Equally, the top priority of dedicated with the challenge of devising solutions for bet- tion and modification and is supported by computing support services is to provide such ter and faster synthesis of raw data into scien- an active development community. It is also systems. tific knowledge. an economical and powerful way of accessing The qualities of an ideal computing plat- Building and delivering tailored computing some of the best computing solutions avail- form are, of course, in the eyes of the beholder. solutions can require significant expertise, is able1. A driving force of the FOSS revolution Important attributes include speed, stability, often dependent on dedicated staff and hard- is Linux.
    [Show full text]
  • Quantian As an Environment for Distributed Statistical Computing
    Quantian for distributed statistical computing Dirk Eddelbuettel Background Quantian as an environment for Introduction Timeline distributed statistical computing Quantian Motivation Content Distributed Computing Dirk Eddelbuettel Overview Preparation Beowulf Debian Project openMosix [email protected] R Examples Snow SnowFT papply DSC 2005 – Directions in Statistical Computing 2005 Others University of Washington, Seattle, August 13-14, 2005 Summary Quantian for distributed statistical computing Outline Dirk Eddelbuettel Background Introduction Timeline 1 Background Quantian Motivation Content 2 Quantian Distributed Computing Overview Preparation 3 Distributed Computing Beowulf openMosix R Examples Snow 4 R Examples SnowFT papply Others Summary 5 Summary Quantian for distributed statistical computing What is Quantian? Dirk A live-dvd for numbers geeks Eddelbuettel Background Introduction Timeline • Quantian is a directly bootable and self-configuring Quantian Motivation Linux sytem that runs from a compressed dvd image. Content • Quantian offers zero-configuration cluster computing Distributed Computing using openMosix, including ’openMosix Terminalserver’ Overview Preparation via PXE. Beowulf openMosix • Quantian contains over 6gb of software, including an R Examples Snow additional 4gb of ’quantitative’ software: scientific, SnowFT papply numerical, statistical, engineering, ... Others • Summary Quantian also contains editors, programming languages, complete latex support, two ’office’ suites, networking tools and more. Quantian for distributed
    [Show full text]