<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Phylo Blog &#187; Development</title>
	<atom:link href="http://phylo.info/blog/category/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://phylo.info/blog</link>
	<description>Discussing the historical network of individuals, institutions, and ideas</description>
	<lastBuildDate>Fri, 04 Dec 2009 05:19:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Teaching the job wiki to sort jobs by &#8220;last updated&#8221;</title>
		<link>http://phylo.info/blog/teaching-the-job-wiki-to-sort-jobs-by-last-updated/</link>
		<comments>http://phylo.info/blog/teaching-the-job-wiki-to-sort-jobs-by-last-updated/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 19:38:12 +0000</pubDate>
		<dc:creator>David Morrow</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://phylo.info/blog/?p=97</guid>
		<description><![CDATA[After some gentle prodding from one of the philosophy job wiki's users, I returned to the task of getting the job wiki to sort job listings according to the date and time of their last update. The wiki now sorts jobs from most recently to least recently updated by default. The trick was teaching SIMILE Exhibit to sort by date.  

]]></description>
			<content:encoded><![CDATA[<p>After some gentle prodding from one of the <a title="Go to Phylo's philosophy job wiki." href="http://phylo.info/jobs">philosophy job wiki</a>&#8217;s users, I revisited a task that I&#8217;d set aside some time ago: getting the job wiki to sort job listings according to the date and time of their last update. I&#8217;d tried this before without success, but today I figured it out.</p>
<p>The job wiki now sorts by &#8220;last updated&#8221; by default. You can, of course, sort jobs in other ways by clicking the &#8217;sorted by&#8217; controls at the top of the listings.</p>
<p>The stumbling block had been the spottiness of <a title="Go to Exhibit's web page." href="http://simile.mit.edu/exhibit/">SIMILE Exhibit</a>&#8217;s documentation. Since I couldn&#8217;t figure out how Exhibit handled dates for sorting purposes, the best I&#8217;d been able to do was to get Exhibit to sort from oldest to most recently updated. That was a bit better than nothing, but not good enough. Today I found the key in the Exhibit source code. I&#8217;m posting it here for the benefit of other SIMILE Exhibit developers:</p>
<p>To get Exhibit to sort items by date, you need to format the dates according to the <a title="Read about ISO 8601 date formats on w3.org." href="http://www.w3.org/TR/NOTE-datetime">ISO 8601 date formatting standards</a>. For instance, October 24, 2009 14:01 CDT should be formatted as <code>2009-10-24T14:01:00-05:00</code>. If you&#8217;re using PHP 5+ to format your dates, you can use the string <code>c</code> in your <a title="Read about the date() function in PHP." href="http://us.php.net/manual/en/function.date.php">date() function</a>. (If you&#8217;re using PHP &lt;5, use <code>Y-m-d\TH:i:s</code>. It doesn&#8217;t include the timezone offset, but that won&#8217;t matter for sorting purposes. Include a separate timestamp for display in your Exhibit if you&#8217;re concerned about the timezone offset.) Exhibit will correctly sort items with dates in ISO 8601 format, both ascending and descending.</p>
<p>There&#8217;s still one problem, though. By default, Exhibit sorts dates from earliest to latest. If you&#8217;re sorting by the timestamp of the last update for each item, you&#8217;ll probably want to default to a descending sort order. Fortunately, Exhibit lets you do that.</p>
<p>To control the default sort order for the items in your exhibit, set the &lt;code&gt;ex:directions&lt;/code&gt; and &lt;code&gt;ex:possibleDirections&lt;/code&gt; properties of your view to &#8216;ascending&#8217; or &#8216;descending&#8217;. You can even set different defaults for different (possible) orderings. (Exhibit always defaults to &#8216;ascending&#8217; if it can&#8217;t find a sort order for something.)</p>
<p>For instance, our job wiki has the following declaration:</p>
<p><code>
<pre>
&lt;div ex:role="view"
  ex:orders=".changed_1"
  ex:directions="descending"
  ex:possibleOrders=".changed_1, .field_name_value, .field_rank_value, .field_job_status_value, .province, .tid_2, .tid_1, .tid"
  ex:possibleDirections="descending"
  ex:grouped="false"
  ex:showAll="true"&gt;
&lt;/div&gt;
</pre>
<p></code></p>
<p>This tells Exhibit to sort the items by property &#8220;.changed_1&#8243; in &#8220;descending&#8221; order by default. It also tells Exhibit to allow users to sort by properties .changed_1, .field_name_value, etc. Finally, the ex:possibleDirections property tells Exhibit to sort items in descending order by default whenever it&#8217;s sorting by .changed_1; because I wanted all other properties to default to sorting in ascending order, I left them all blank.</p>
<p>One more example: Suppose you&#8217;re working with the Nobel prize winner data from <a title="Go to SIMILE Exhibit's tutorial for new users." href="http://simile.mit.edu/wiki/Exhibit/Getting_Started_Tutorial">Exhibit&#8217;s Getting Started Tutorial</a>. You want to configure your Exhibit so that when it first boots up, the Nobelists are sorted by year from most recent to least recent. You also want your users to be able to sort by name, discipline, and year. You want the default order when sorting by name to be A-Z, the default order when sorting by discipline to be Z-A (you like physics best), and year to be most recent to least recent. You would need the following code:</p>
<p><code>
<pre>
&lt;div ex:role="view"
  ex:orders=".nobel-year"
  ex:directions="descending"
  ex:possibleOrders=".last-name, .discipline, .nobel-year"
  ex:possibleDirections="ascending, descending, descending"&gt;
&lt;/div&gt;
</pre>
<p></code></p>
<p>Happy sorting!</p>
]]></content:encoded>
			<wfw:commentRss>http://phylo.info/blog/teaching-the-job-wiki-to-sort-jobs-by-last-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using reCAPTCHA to help digitize books</title>
		<link>http://phylo.info/blog/using-recaptcha-to-help-digitize-books/</link>
		<comments>http://phylo.info/blog/using-recaptcha-to-help-digitize-books/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 21:28:33 +0000</pubDate>
		<dc:creator>Chris Alen Sula</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://phylo.info/blog/?p=86</guid>
		<description><![CDATA[We&#8217;ve reactivated reCAPTCHA on our new domain. CAPTCHAs are the distorted images found on registration forms that help determine whether a user is a human or a computer program, such as a spam bot. Carnegie Mellon&#8217;s reCAPTCHA takes this function to a new level by using human-generated inputs to help digitize old books.
As recaptcha.net explains, [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve reactivated reCAPTCHA on our new domain. CAPTCHAs are the distorted images found on registration forms that help determine whether a user is a human or a computer program, such as a spam bot. Carnegie Mellon&#8217;s <a href="http://recaptcha.net">reCAPTCHA</a> takes this function to a new level by using human-generated inputs to help digitize old books.</p>
<p>As recaptcha.net <a href="http://recaptcha.net/learnmore.html">explains</a>, Optical Character Recognition (OCR) cannot successfully digitize all words from book images. </p>
<p><img class="alignnone" title="reCAPTCHA" src="http://recaptcha.net/images/sample-ocr.gif" alt="" width="544" height="108" /></p>
<p>reCAPTCHA takes these unreadable words and uses them to generate CAPTCHA images. When human users solve the CAPTCHA, their responses help decipher the unreadable words. (In case you&#8217;re wondering how it works, users are given two images, one successfully OCRed and another that is not. When a user gets the OCRed word right, the system assumes he/she is correct about the other word. Responses are aggregated together to improve the confidence of digitization.)</p>
<p>reCAPTCHA currently helps digitize books from the <a href="http://www.archive.org/">Internet Archive</a> and old editions of the <a href="http://www.nytimes.com/">New York Times</a>.</p>
<p>We use reCAPTCHA on two areas of the site: user registration and Phylo Forum (where visitors can post messages without registering.</p>
]]></content:encoded>
			<wfw:commentRss>http://phylo.info/blog/using-recaptcha-to-help-digitize-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New design launched</title>
		<link>http://phylo.info/blog/new-design-launched/</link>
		<comments>http://phylo.info/blog/new-design-launched/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 07:11:57 +0000</pubDate>
		<dc:creator>Chris Alen Sula</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://phylosophy.net/blog/?p=64</guid>
		<description><![CDATA[We&#8217;ve implemented a new site design that&#8217;s lighter, cleaner, and helps segment information more effectively. I&#8217;m posting wireframes of the old and new designs below for comparison.


One thing we haven&#8217;t fully implemented yet is a history function near the top right part of the screen. A breadcrumb will be added for each piece of content [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve implemented a new site design that&#8217;s lighter, cleaner, and helps segment information more effectively. I&#8217;m posting wireframes of the old and new designs below for comparison.</p>
<p><a href="http://phylosophy.net/blog/wp-content/uploads/2008/12/sitedesign_main1.jpg"><img class="alignnone size-full wp-image-66" style="border: 1px solid black;" title="Site design (09.2007)" src="http://phylosophy.net/blog/wp-content/uploads/2008/12/sitedesign_main1.jpg" border="1" alt="Site design (09.2007)" width="500" /></a></p>
<p><a href="http://phylosophy.net/blog/wp-content/uploads/2008/12/sitedesign_main2.jpg"><img class="alignnone size-medium wp-image-67" style="border: 1px solid black;" title="Site design (12.2008)" src="http://phylosophy.net/blog/wp-content/uploads/2008/12/sitedesign_main2.jpg" alt="Site design (12.2008)" width="500" /></a></p>
<p>One thing we haven&#8217;t fully implemented yet is a history function near the top right part of the screen. A breadcrumb will be added for each piece of content a user visits or each search a user performs. This will provide a visual way of tracing back your location as you navigate through the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://phylo.info/blog/new-design-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beta site launch</title>
		<link>http://phylo.info/blog/beta-site-launch/</link>
		<comments>http://phylo.info/blog/beta-site-launch/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 19:10:15 +0000</pubDate>
		<dc:creator>Chris Alen Sula</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://phylosophy.net/blog/?p=45</guid>
		<description><![CDATA[We&#8217;ve just opened access to a test drive of the site at www.phylosophy.net. At present, you can search for individuals and institutions within the database, and explore connections between them using links. The most recent degrees and appointments from our core set of schools are included, as well as advisors. For a good, complete sample, [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve just opened access to a test drive of the site at <a href="www.phylosophy.net">www.phylosophy.net</a>. At present, you can search for individuals and institutions within the database, and explore connections between them using links. The most recent degrees and appointments from our core set of schools are included, as well as advisors. For a good, complete sample, check out our home institution, CUNY, as well as some of our recent PhDs, such as James Snyder, Fritz McDonald, and Christine Vitrano.</p>
<p>At this point, the data is still tabular, but we&#8217;re making steady progress on our first visualization, which should be an institutional timeline. Charts, graphs, and network maps should follow in the coming months. We&#8217;ve also disabled account creation and data editing/uploading for the moment, until the rest of our initial, verified dataset has been entered.</p>
<p>After you&#8217;ve had a chance to play around a bit, drop us a line in the <a href="http://phylosophy.net/forum/7">Feeback section</a> of Phylo forum or via email (<a href="mailto:phylo@phylosophy.net">phylo@phylosophy.net</a>) with your initial thoughts on site design and usability.</p>
]]></content:encoded>
			<wfw:commentRss>http://phylo.info/blog/beta-site-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ISI Web of Science</title>
		<link>http://phylo.info/blog/isi-web-of-science/</link>
		<comments>http://phylo.info/blog/isi-web-of-science/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 18:59:15 +0000</pubDate>
		<dc:creator>Chris Alen Sula</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Related]]></category>
		<category><![CDATA[participatory design]]></category>
		<category><![CDATA[scopus]]></category>
		<category><![CDATA[search tools]]></category>
		<category><![CDATA[visualizations]]></category>
		<category><![CDATA[web of science]]></category>

		<guid isPermaLink="false">http://phylosophy.net/blog/?p=37</guid>
		<description><![CDATA[David and I both attended presentations on ISI Web of Science today. WoS is taking an interesting and, in many ways, different approach as a search tool. Here are a few of the things that stood out:

Keywords are de-emphasized. There is no taxonomy associated with WoS (since it is so interdisciplinary in scope), so users [...]]]></description>
			<content:encoded><![CDATA[<p>David and I both attended presentations on <a href="http://www.isiknowledge.com" target="_blank">ISI Web of Science</a> today. WoS is taking an interesting and, in many ways, different approach as a search tool. Here are a few of the things that stood out:</p>
<ul>
<li><strong>Keywords are de-emphasized. </strong>There is no taxonomy associated with WoS (since it is so interdisciplinary in scope), so users are encouraged to search by authors (including their home institutions) and particular publications. WoS does assign keywords to articles using an algorithm that looks at titles and summaries, so users can search by topic, but it&#8217;s certainly not the preferred method.</li>
<li><strong>Influence is understood in terms of citations</strong>. Each record is tagged with as many citation links as possible (only journal articles are included). As searchers, we were shown how to find the handful of mega-articles that hundreds of other articles on a topic all cite in common. If this really is a good measure of influence, it seems possible that one could jump into any topic knowing virtually nothing about its major players and sift them out from pure citation counts.</li>
<li><strong>H-scores</strong>. <a href="http://fleetwood.baylor.edu/certain_doubts/" target="_blank">Certain Doubts</a> has had several posts about h-scores in the past few months, so I&#8217;ll simply refer you to discussions on <a href="http://fleetwood.baylor.edu/certain_doubts/?p=759" target="_blank">29 Nov</a>, <a href="http://fleetwood.baylor.edu/certain_doubts/?p=765" target="_blank">13 Dec</a>, <a href="http://fleetwood.baylor.edu/certain_doubts/?p=771" target="_blank">15 Dec</a>, <a href="http://fleetwood.baylor.edu/certain_doubts/?p=772" target="_blank">17 Dec</a>, <a href="http://fleetwood.baylor.edu/certain_doubts/?p=773" target="_blank">19 Dec</a>, and <a href="http://fleetwood.baylor.edu/certain_doubts/?p=776" target="_blank">28 Dec.</a></li>
<li><strong>Search queries seem pretty user-intensive</strong>. There&#8217;s no fuzzy search capabilities (&#8221;Did you mean X?&#8221;), so there was a lot of emphasis on wild card and truncated search strings. (See below.)</li>
<li><strong>Some attempt at visualizations</strong>. I noticed two kinds of citation reports available for viewing. One shows the number of publications returned for any search; the other shows the number of citations within that publications set. These charts are static images generated upon request, and seem similar to <a href="http://www.scopus.com" target="_blank">Scopus&#8217;</a> visual capabilities (although I wouldn&#8217;t know because the server always times out before my image is generated by Scopus). Here are the two charts I generated for &#8220;rawls AND justice&#8221;.</li>
</ul>
<p style="text-align: center;"><a href="http://phylosophy.net/blog/wp-content/uploads/2008/04/draw2.jpeg"><img class="alignnone size-medium wp-image-41" title="draw2" src="http://phylosophy.net/blog/wp-content/uploads/2008/04/draw2.jpeg" alt="" width="300" height="250" /></a></p>
<p style="text-align: center;"><a href="http://phylosophy.net/blog/wp-content/uploads/2008/04/draw.jpeg"><img class="alignnone size-medium wp-image-40" title="draw" src="http://phylosophy.net/blog/wp-content/uploads/2008/04/draw.jpeg" alt="" width="300" height="250" /></a></p>
<p>WoS has data for arts and humanities going back to 1975, and I think it will be interesting to see how much it catches on in the humanities and in philosophy. One general limitation—one that I raise in the <a href="http://phylosophy.net/blog/wp-content/uploads/2007/07/phylo_intro.pdf">An Introduction to Phylo</a>—is the way in which this tool makes the user do the work, rather than the other way around. I was struck by how much presenter of the session was essentially training <em>us</em> to work with the tool by favoring publication data over keywords and filtering searches in certain ways, rather than giving us an intuitive tool that worked however we found most natural. In general, I think this underscores the need for more participatory design in building search tools.</p>
<p>Beyond just asking users what they think of the tools we&#8217;ve built, we need to learn more beforehand about how they process information and in what forms they find that information most cognitively salient. I think we&#8217;ll learn some of this once we launch and revise our displays, and I hope we can come up with some model of participatory design that facilitates the process.</p>
]]></content:encoded>
			<wfw:commentRss>http://phylo.info/blog/isi-web-of-science/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex and Google Maps</title>
		<link>http://phylo.info/blog/flex-and-google-maps/</link>
		<comments>http://phylo.info/blog/flex-and-google-maps/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 20:32:56 +0000</pubDate>
		<dc:creator>Chris Alen Sula</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Visualization]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[vizualization]]></category>

		<guid isPermaLink="false">http://phylosophy.net/blog/2007/11/29/flex-and-google-maps/</guid>
		<description><![CDATA[We&#8217;ve tentatively chosen two applications to run our visualizations: Adobe Flex, which would handle netMap and chronoMap, and Google Maps, which would run geoMap (probably with a Flex overlay).
The choice for netMap and chronoMap was a tough one. There are few nice, open source tools out there, including prefuse, Simile Timeline, and Simile Exhibit. All [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve tentatively chosen two applications to run our visualizations: <a href="http://www.adobe.com/products/flex/">Adobe Flex</a>, which would handle netMap and chronoMap, and <a href="http://code.google.com/apis/maps/index.html">Google Maps</a>, which would run geoMap (probably with a Flex overlay).</p>
<p>The choice for netMap and chronoMap was a tough one. There are few nice, open source tools out there, including <a href="http://prefuse.org/">prefuse</a>, <a href="http://simile.mit.edu/timeline/">Simile Timeline</a>, and <a href="http://simile.mit.edu/exhibit/">Simile Exhibit</a>. All of these are free, and very much in the spirit of Phylo. But each has its drawbacks, and using three different tools to run visualizations might slow down loading time and make integrating displays difficult. There&#8217;s also some worries about getting any Java-based tools to perform reliably in different browsers.</p>
<p>Flex overcomes a lot of these worries. It runs in a Flash environment (which is standard across all browsers) and it allows us to implement netMap and chronoMap in a single application. It also has some neat animated transitions, which you can see at <a href="http://www.adobe.com/devnet/flex/samples/dashboard/dashboard.html" target="_blank">http://www.adobe.com/devnet/flex/samples/dashboard/dashboard.html</a>.</p>
<p>The choice to go with Google Maps API was a bit easier. The application is constantly being expanded, and there are lots of ways to customize it for our needs. Ideally, we&#8217;ll overlay some Flex elements on Google Maps, but it&#8217;s hard to say where that technology will be by the time we launch.</p>
<p>At any rate, you can expect to see some slick and consistent visualizations run by Flex.</p>
]]></content:encoded>
			<wfw:commentRss>http://phylo.info/blog/flex-and-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>drupal implementation</title>
		<link>http://phylo.info/blog/drupal-implementation/</link>
		<comments>http://phylo.info/blog/drupal-implementation/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 20:32:35 +0000</pubDate>
		<dc:creator>Chris Alen Sula</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://phylosophy.net/blog/2007/11/20/drupal-implementation/</guid>
		<description><![CDATA[Phylo will run on drupal, an open source content management system (CMS). After a few months of development, we&#8217;ve realized the need for several things:

a robust tracking system that can record additions and changes, including user information and comments on why changes are being made,
a secure sign-in area for user information,
a search engine with advanced capabilities, [...]]]></description>
			<content:encoded><![CDATA[<p>Phylo will run on <a href="http://www.drupal.org" target="_blank">drupal</a>, an open source content management system (CMS). After a few months of development, we&#8217;ve realized the need for several things:</p>
<ul>
<li>a robust tracking system that can record additions and changes, including user information and comments on why changes are being made,</li>
<li>a secure sign-in area for user information,</li>
<li>a search engine with advanced capabilities, and</li>
<li>a general system that can be updated without heavy time investment in new coding.</li>
</ul>
<p>drupal is one of the leading CMSes and will be able to meet all of these needs, and more. One of the most user-friendly features will be a site-wide login system. Once you&#8217;re signed in through the website, blog, or forum, you&#8217;ll automatically be signed in to the other two as well, allowing you to upload or change information, make comments, and post messages without addition logins. Hopefully this will help to encourage discussion on information, since the forum will always be one click away through the main menu.</p>
<p>drupal will also come in handy long-term as well. Once the core visualizations and functions are complete, we&#8217;ll be able to export a Phylo drupal module for use in other fields. So when someone in (say) English or sociology wants to create a Phylo in their own discipline, they&#8217;ll just need to install drupal and then activate the Phylo module.</p>
]]></content:encoded>
			<wfw:commentRss>http://phylo.info/blog/drupal-implementation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phylo and InPhO</title>
		<link>http://phylo.info/blog/phylo-and-inpho/</link>
		<comments>http://phylo.info/blog/phylo-and-inpho/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 18:43:30 +0000</pubDate>
		<dc:creator>Chris Alen Sula</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://phylosophy.net/blog/2007/10/24/phylo-and-inpho/</guid>
		<description><![CDATA[At NA-CAP 2007, we were introduced to The Indiana Philosophy Ontology Project (InPhO), which is developing a dynamic formal ontology for philosophy. A main focus of the project is developing a way to handle metadata for the Stanford Encyclopedia of Philosophy (SEP). As many of you know, the current SEP entries are searchable and listed [...]]]></description>
			<content:encoded><![CDATA[<p>At <a href="http://na-cap.osi.luc.edu/" target="_blank">NA-CAP 2007</a>, we were introduced to The Indiana Philosophy Ontology Project (<a href="http://na-cap.osi.luc.edu/" target="_blank">InPhO</a>), which is developing a dynamic formal ontology for philosophy. A main focus of the project is developing a way to handle metadata for the Stanford Encyclopedia of Philosophy (SEP). As many of you know, the current SEP entries are searchable and listed alphabetically. With InPhO, they should soon appear in hierarchies, with narrower entries (e.g., higher-order thought) falling under broader categories (e.g., consciousness).</p>
<p>The beauty of InPhO is that it&#8217;s continually updated by running statistics over SEP entries to identify likely relationships between terms. It also uses a bit of expert input to refine these relationships.</p>
<p>At the moment, we&#8217;re talking to Colin Allen and Cameron Buckner about using InPhO to taxonomize publication information, including dissertations. This has several upshots:</p>
<ul>
<li>It eliminates the need for us to create yet another keyword hierarchy in philosophy. That should keep down online clutter and free up our time to work on other parts of Phylo.</li>
<li>It will standardize ontology across Phylo and SEP, which should make searching different sources easier.</li>
<li>It guarantees that any keyword in Phylo has corresponding information available through SEP.</li>
</ul>
<p>We&#8217;ll keep you updated as things develop with InPhO. In meantime, you can browse the first iteration of the ontology at <a href="http://inpho.cogs.indiana.edu:16080/taxonomy/" target="_blank">http://inpho.cogs.indiana.edu:16080/taxonomy/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://phylo.info/blog/phylo-and-inpho/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search with Worldcat.org, Google Scholar, and Google</title>
		<link>http://phylo.info/blog/search-with-worldcatorg-google-scholar-and-google/</link>
		<comments>http://phylo.info/blog/search-with-worldcatorg-google-scholar-and-google/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 01:07:45 +0000</pubDate>
		<dc:creator>Chris Alen Sula</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://phylosophy.net/blog/2007/09/25/search-with-worldcatorg-google-scholar-and-google/</guid>
		<description><![CDATA[We&#8217;ve just added lots of search functionality to Phylo. In the display results for any person, you&#8217;ll also find links to Worldcat.org, Google Scholar, and Google, which will provide one-click search results on the person you&#8217;re interested in. (In time, we&#8217;d like to do the same for publications, also providing access to Google Books.)
One of [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve just added lots of search functionality to Phylo. In the display results for any person, you&#8217;ll also find links to Worldcat.org, Google Scholar, and Google, which will provide one-click search results on the person you&#8217;re interested in. (In time, we&#8217;d like to do the same for publications, also providing access to Google Books.)</p>
<p>One of the benefits of Worldcat.org (a free beta version of Worldcat.com) is that the site automatically detects your location based on your IP address. It then asks you to select your library from a list of libraries in your area, and saves this as a preference when you return to the site. From there, you can get one-click access to your library catalog to see whether the source is available. (You can also search other library catalogs as well.)  Google Scholar also has similar functionality.</p>
<p>What this means is that for any person (and, in time, publication) in Phylo, you&#8217;re two clicks away from finding sources in your own library catalog.</p>
]]></content:encoded>
			<wfw:commentRss>http://phylo.info/blog/search-with-worldcatorg-google-scholar-and-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data on women in philosophy</title>
		<link>http://phylo.info/blog/data-on-women/</link>
		<comments>http://phylo.info/blog/data-on-women/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 20:18:55 +0000</pubDate>
		<dc:creator>Chris Alen Sula</dc:creator>
				<category><![CDATA[Data]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Discoveries]]></category>

		<guid isPermaLink="false">http://phylosophy.net/blog/2007/09/20/data-on-women/</guid>
		<description><![CDATA[Sally Haslanger&#8217;s &#8220;Changing the Ideology and Culture of Philosophy: Not by Reason (Alone)&#8221; has been circulating around several blogs and listservs lately. The article, which is slated to come out in Hypatia next year, reviews the situation for women in current academic philosophy. Haslanger includes statistics on the top 20 departments as well as leading [...]]]></description>
			<content:encoded><![CDATA[<p>Sally Haslanger&#8217;s &#8220;<a href="http://phylosophy.net/blog/wp-content/uploads/2007/10/haslangercicp.pdf" target="_blank">Changing the Ideology and Culture of Philosophy: Not by Reason (Alone)</a>&#8221; has been circulating around several blogs and listservs lately. The article, which is slated to come out in <em>Hypatia </em>next year, reviews the situation for women in current academic philosophy. Haslanger includes statistics on the top 20 departments as well as leading journals.</p>
<p>The statistics are surprising, and not just because of the low percentage of women represented. They&#8217;re surprising because we see so little hard data about the field. It takes a huge amount of time and effort on the part of Haslangers (and Nina Emery, who she credits) to assemble this data, and even Haslanger notes throughout the article that we need more data to get a full picture of the situation. (I have heard, however, that the APA is gearing up for a demographic study soon.)</p>
<p>This need got me thinking about how Phylo can help fill the gap. Our database will already contain lots of information on top departments (and hopefully publications as well). By simply coding individuals as male or female, we should be able to generate statistics on</p>
<ul>
<li>the percentage of women in top departments</li>
<li>placement figures for women PhDs</li>
<li>number of appointments across a career for women</li>
<li>(the percentage of women published in journals)</li>
</ul>
<p>and all of this <em>for any time period</em>! The initial data won&#8217;t be totally complete because it won&#8217;t include all the top departments (or probably publications). But it will provide some good historical data, which we seem to be totally lacking. And with frequent updates and more data, Phylo should be able to provide <em>current</em> statistics so anyone can get a snapshot of the field at any moment.</p>
<p>This potential has led us to plan a new, nonvisual interface for statistical information. Call it &#8220;stats.&#8221; In principle, it would allow any user to generate statistics on any kind of data that Phylo has. (Some of our displays already do this to visualize aggregate data.) It would also allow users to export data (possibly even raw data) to analyze further in more sophisticated programs.</p>
<p>There&#8217;s still a lot of detail to work out here, but &#8220;stats&#8221; might fill a huge gap in quantitative information about the field. Look for it in the Lab after our big launch.</p>
]]></content:encoded>
			<wfw:commentRss>http://phylo.info/blog/data-on-women/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display plans</title>
		<link>http://phylo.info/blog/display-plans/</link>
		<comments>http://phylo.info/blog/display-plans/#comments</comments>
		<pubDate>Sat, 04 Aug 2007 17:47:39 +0000</pubDate>
		<dc:creator>Chris Alen Sula</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://phylosophy.net/blog/2007/08/04/display-plans/</guid>
		<description><![CDATA[When we started this project, we conceived of three displays:

an individuals display, which would identify personal influences on a particular
individual, including their relationships with their teachers, graduate school peers, colleagues at appointed institutions, and dissertation advisees and committee members.
an institutional display, which would show which philosophers worked and studied at a particular institution throughout the [...]]]></description>
			<content:encoded><![CDATA[<p>When we started this project, we conceived of three displays:</p>
<ul>
<li><strong>an individuals display</strong>, which would identify personal influences on a particular<br />
individual, including their relationships with their teachers, graduate school peers, colleagues at appointed institutions, and dissertation advisees and committee members.</li>
<li><strong>an institutional display</strong>, which would show which philosophers worked and studied at a particular institution throughout the institutionâ€™s history, as well as the topics studied there at different times.</li>
<li><strong>an ideas display</strong>, which would reflect the intensity of study of specific philosophical ideas across time and place.</li>
</ul>
<p>Over many conversations, we realized that these displays were running two things together: ways to visualize data (relational, chronological, geographical) and kinds of information displayed (individuals, institutions, ideas). The pairings were naturalâ€”and we still think they areâ€”but we&#8217;ve realized that decoupling the display types from the data types opens up new options, (say) a network of citations, or a map of placement information.</p>
<p>Our current plan centers around three kinds of displays that can each handle any kind of information:</p>
<ul>
<li><strong>netMap</strong>, a network-based display that shows relations and interconnections.</li>
<li><strong>chronoMap</strong>, a time-based display that tracks trends.</li>
<li><strong>geoMap</strong>, a geographic display that plots information in physical space.</li>
</ul>
<p>We&#8217;ll have updates on these as we firm up which visualization tools we plan to use. We&#8217;d also like to hear suggestions about what kind of things you&#8217;d like these displays to show you about individuals, institutions, and ideas.</p>
]]></content:encoded>
			<wfw:commentRss>http://phylo.info/blog/display-plans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
