<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Justin Talbot</title>
	<atom:link href="http://www.justintalbot.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.justintalbot.com</link>
	<description></description>
	<lastBuildDate>Mon, 31 Oct 2011 14:58:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Axis Labeling by Justin Talbot</title>
		<link>http://www.justintalbot.com/research/axis-labeling/comment-page-1/#comment-409</link>
		<dc:creator>Justin Talbot</dc:creator>
		<pubDate>Mon, 31 Oct 2011 14:58:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.justintalbot.com/?page_id=154#comment-409</guid>
		<description>Thanks, I&#039;ll check the gnuplot code. I haven&#039;t used this for log scales, but using the exponents (e.g. -12 to -6) should provide plausible, if not optimal, results. You&#039;re right that for log scales, non-integer numbers are much less nice than for standard scales. You would have to adjust the niceness score to account for this.</description>
		<content:encoded><![CDATA[<p>Thanks, I&#8217;ll check the gnuplot code. I haven&#8217;t used this for log scales, but using the exponents (e.g. -12 to -6) should provide plausible, if not optimal, results. You&#8217;re right that for log scales, non-integer numbers are much less nice than for standard scales. You would have to adjust the niceness score to account for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# code for labeling paper by Justin Talbot</title>
		<link>http://www.justintalbot.com/2011/07/c-code-for-labeling-paper/comment-page-1/#comment-408</link>
		<dc:creator>Justin Talbot</dc:creator>
		<pubDate>Mon, 31 Oct 2011 14:56:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.justintalbot.com/?p=200#comment-408</guid>
		<description>On part 2 of you question, it sounds like you want to force external labels. You can make this happen by simply checking if the minimum and maximum labels are outside the range of the data in the optimization search. The R implementation I provided has an option to do this check already. Look there for more details.</description>
		<content:encoded><![CDATA[<p>On part 2 of you question, it sounds like you want to force external labels. You can make this happen by simply checking if the minimum and maximum labels are outside the range of the data in the optimization search. The R implementation I provided has an option to do this check already. Look there for more details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Axis Labeling by Justin Talbot</title>
		<link>http://www.justintalbot.com/research/axis-labeling/comment-page-1/#comment-407</link>
		<dc:creator>Justin Talbot</dc:creator>
		<pubDate>Mon, 31 Oct 2011 14:53:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.justintalbot.com/?page_id=154#comment-407</guid>
		<description>The simplicity component of the optimization score includes a term for whether or not the labeling includes 0. You can increase the weight on this term if you like.</description>
		<content:encoded><![CDATA[<p>The simplicity component of the optimization score includes a term for whether or not the labeling includes 0. You can increase the weight on this term if you like.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Axis Labeling by Claudia</title>
		<link>http://www.justintalbot.com/research/axis-labeling/comment-page-1/#comment-406</link>
		<dc:creator>Claudia</dc:creator>
		<pubDate>Thu, 27 Oct 2011 12:11:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.justintalbot.com/?page_id=154#comment-406</guid>
		<description>Hi: In hopes to get some insight, I would like to know if there is a way to force the zero value to be an axis label. I have found that in some types of charts it looks weird if the zero value along the y axis is not displayed. This is the case for the bar chart, amongst others, specially if you have both positive and negative values.

I know it is possible to tweak the settings, but this will depend on the data ranges being assigned. If anyone would like to share information on how this could be achieved predictably, independent of the other settings, I would be immensely grateful.</description>
		<content:encoded><![CDATA[<p>Hi: In hopes to get some insight, I would like to know if there is a way to force the zero value to be an axis label. I have found that in some types of charts it looks weird if the zero value along the y axis is not displayed. This is the case for the bar chart, amongst others, specially if you have both positive and negative values.</p>
<p>I know it is possible to tweak the settings, but this will depend on the data ranges being assigned. If anyone would like to share information on how this could be achieved predictably, independent of the other settings, I would be immensely grateful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# code for labeling paper by Claudia</title>
		<link>http://www.justintalbot.com/2011/07/c-code-for-labeling-paper/comment-page-1/#comment-405</link>
		<dc:creator>Claudia</dc:creator>
		<pubDate>Mon, 24 Oct 2011 13:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.justintalbot.com/?p=200#comment-405</guid>
		<description>Hi Justin. I have a question regarding the actual usage of your algorithm in two specific cases:

1) When using datasets that are both positive and negative, I want to somehow force the zero value on the y axis to be displayed as a label. Right now, this depends on the many settings available to you, but if you could give me a hint on how to force the zero value to be displayed, independent on the other settings, and from there on, calculate the rest of the labels.

2) When using a bar chart, many times the least value is displayed as a bar that&#039;s not visible. Take for example a data set that goes from 5 to 10. The y axis could potentially be defined by labels going from 5 through 10, which would render the smallest bar (with a value of 5) as non visible. Ideally in the case of bars, I would like to see all bars that are greater than zero. In this case the labels could potentially go from 2 through 10 or something similar, giving the smallest bar some space. For this situation, I would like to have a way to force the first label be lesser than the smallest value.

Maybe these two cases are properly handled by your algorithm, but I haven&#039;t been able to find how to predictively handle this, without prior knowledge of the data.

If these cases are not handled, I would love if you could either give me hints on how this can be implemented or maybe add these two functionalities to the algorithm, so that bar charts can be implemented with the labeling being adjusted to these two conditions.</description>
		<content:encoded><![CDATA[<p>Hi Justin. I have a question regarding the actual usage of your algorithm in two specific cases:</p>
<p>1) When using datasets that are both positive and negative, I want to somehow force the zero value on the y axis to be displayed as a label. Right now, this depends on the many settings available to you, but if you could give me a hint on how to force the zero value to be displayed, independent on the other settings, and from there on, calculate the rest of the labels.</p>
<p>2) When using a bar chart, many times the least value is displayed as a bar that&#8217;s not visible. Take for example a data set that goes from 5 to 10. The y axis could potentially be defined by labels going from 5 through 10, which would render the smallest bar (with a value of 5) as non visible. Ideally in the case of bars, I would like to see all bars that are greater than zero. In this case the labels could potentially go from 2 through 10 or something similar, giving the smallest bar some space. For this situation, I would like to have a way to force the first label be lesser than the smallest value.</p>
<p>Maybe these two cases are properly handled by your algorithm, but I haven&#8217;t been able to find how to predictively handle this, without prior knowledge of the data.</p>
<p>If these cases are not handled, I would love if you could either give me hints on how this can be implemented or maybe add these two functionalities to the algorithm, so that bar charts can be implemented with the labeling being adjusted to these two conditions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Axis Labeling by christie harper</title>
		<link>http://www.justintalbot.com/research/axis-labeling/comment-page-1/#comment-404</link>
		<dc:creator>christie harper</dc:creator>
		<pubDate>Wed, 19 Oct 2011 20:50:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.justintalbot.com/?page_id=154#comment-404</guid>
		<description>very interesting work. i have implemented the majority of your stuff in matlab and if interested will send you a copy (each method extended, wilkinson... are separate functions) if you are interested.
minor bug in the gnuplot portion code (at least the R), towards the bottom where graphmin &amp; graphmax are set you have the values min &amp; max vs dmin &amp; dmax.  I have see numerous references to R before but this is the first time i have played with it.
have you attempted to apply any of this to log scales? (i simply tried each one and using the actual values 1.0e-12 to 1.0e-6 did not work and trying -12 to -6 sometimes gives me non integer exponents).  thanks</description>
		<content:encoded><![CDATA[<p>very interesting work. i have implemented the majority of your stuff in matlab and if interested will send you a copy (each method extended, wilkinson&#8230; are separate functions) if you are interested.<br />
minor bug in the gnuplot portion code (at least the R), towards the bottom where graphmin &amp; graphmax are set you have the values min &amp; max vs dmin &amp; dmax.  I have see numerous references to R before but this is the first time i have played with it.<br />
have you attempted to apply any of this to log scales? (i simply tried each one and using the actual values 1.0e-12 to 1.0e-6 did not work and trying -12 to -6 sometimes gives me non integer exponents).  thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Axis Labeling by Justin Talbot</title>
		<link>http://www.justintalbot.com/research/axis-labeling/comment-page-1/#comment-368</link>
		<dc:creator>Justin Talbot</dc:creator>
		<pubDate>Wed, 31 Aug 2011 18:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.justintalbot.com/?page_id=154#comment-368</guid>
		<description>Here&#039;s &lt;a href=&quot;http://www.justintalbot.com/wp-content/uploads/2011/08/AhmetJava.zip&quot; rel=&quot;nofollow&quot;&gt;Ahmet&#039;s Java code&lt;/a&gt; which he&#039;s given me permission to post. I haven&#039;t looked at it too carefully, yet. If you run into any problems, let me know and I&#039;ll pass the message to Ahmet.</description>
		<content:encoded><![CDATA[<p>Here&#8217;s <a href="http://www.justintalbot.com/wp-content/uploads/2011/08/AhmetJava.zip" rel="nofollow">Ahmet&#8217;s Java code</a> which he&#8217;s given me permission to post. I haven&#8217;t looked at it too carefully, yet. If you run into any problems, let me know and I&#8217;ll pass the message to Ahmet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Axis Labeling by Hamid Younesy</title>
		<link>http://www.justintalbot.com/research/axis-labeling/comment-page-1/#comment-367</link>
		<dc:creator>Hamid Younesy</dc:creator>
		<pubDate>Mon, 29 Aug 2011 20:09:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.justintalbot.com/?page_id=154#comment-367</guid>
		<description>so... the answer is yes? :)</description>
		<content:encoded><![CDATA[<p>so&#8230; the answer is yes? <img src='http://www.justintalbot.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# code for labeling paper by Justin Talbot</title>
		<link>http://www.justintalbot.com/2011/07/c-code-for-labeling-paper/comment-page-1/#comment-366</link>
		<dc:creator>Justin Talbot</dc:creator>
		<pubDate>Wed, 17 Aug 2011 23:05:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.justintalbot.com/?p=200#comment-366</guid>
		<description>Perhaps so. I was learning C# while writing this and I may have overused that language feature. Let me know if I can clarify anything.</description>
		<content:encoded><![CDATA[<p>Perhaps so. I was learning C# while writing this and I may have overused that language feature. Let me know if I can clarify anything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Axis Labeling by Hamid Younesy</title>
		<link>http://www.justintalbot.com/research/axis-labeling/comment-page-1/#comment-365</link>
		<dc:creator>Hamid Younesy</dc:creator>
		<pubDate>Wed, 17 Aug 2011 12:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.justintalbot.com/?page_id=154#comment-365</guid>
		<description>Hi,
I am interested in using your labeling approach for our visualization framework which is in Java. I was wondering if there is a Java implementation might be available sometime soon, or I should try to port the C# version myself. Also wondering if Ahmet Karahan has finished his Java implementation and if he is willing to share it.
Thanks!</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am interested in using your labeling approach for our visualization framework which is in Java. I was wondering if there is a Java implementation might be available sometime soon, or I should try to port the C# version myself. Also wondering if Ahmet Karahan has finished his Java implementation and if he is willing to share it.<br />
Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

