<?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>VSN International &#187; Newsletters</title>
	<atom:link href="/category/newsletters/feed" rel="self" type="application/rss+xml" />
	<link>http://www.vsni.co.uk</link>
	<description>Statistical Software for Bioscientists</description>
	<lastBuildDate>Thu, 23 Feb 2012 09:46:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Vision No 21 May 2011</title>
		<link>http://www.vsni.co.uk/2011/home-pages/vision-no-21-may-2011</link>
		<comments>http://www.vsni.co.uk/2011/home-pages/vision-no-21-may-2011#comments</comments>
		<pubDate>Thu, 19 May 2011 11:15:47 +0000</pubDate>
		<dc:creator>allen</dc:creator>
				<category><![CDATA[Home Pages]]></category>
		<category><![CDATA[Newsletters]]></category>

		<guid isPermaLink="false">http://www.vsni.co.uk/?p=3303</guid>
		<description><![CDATA[Free software in education VSNi is proud to announce the launch of GenStat for Teaching and Learning &#8211; a new free product based on the current Genstat 13, but amended to make it suitable for school and undergraduate students. The easy to use GenStat Menu system provides access to a wide [...]]]></description>
			<content:encoded><![CDATA[<h2>Free software in education</h2>
<p>VSNi is proud to announce the launch of <strong>GenStat for Teaching and Learning</strong> &#8211; a new free product based on the current Genstat 13, but amended to make it suitable for school and undergraduate students. The easy to use GenStat Menu system provides access to a wide range of standard statistical analyses, including: basic statistics, statistical tests (t, chi-square, nonparametric tests etc), regression (general models not just e.g. simple linear regression), generalized linear models, nonlinear models (standard curves and user-defined), analysis of variance, design of experiments and sample size, REML analysis of linear mixed models, multivariate analysis, six-sigma, survival analysis, time series and repeated measurements.</p>
<p>For full details of the key differences between GenStat for Teaching and Learning and the full commercial edition GenStat 13 please visit <a title="GTL versus GS13" href="/software/genstat-teaching/comparison-of-gtl-genstat-13/" target="_blank">the website</a>.</p>
<p>GenStat for Teaching and Learning is licenced at an institutional level, but individual trials are available by emailing <a href="mailto:support@vsni.co.uk">support</a>.</p>
<p>For researchers working with complex models and larger data sets, the Discovery Programme has been expanded to include <strong>ASReml Discovery</strong>. Recently launched ASReml Discovery is available to everyone involved in education, and also to non-commercial research organisations based in eligible countries. More details on ASReml Discovery and how to register for a copy can be found on the <a title="ASReml Discovery" href="/software/asreml-discovery/">VSNI website</a>.</p>
<h2>Technical Tip &#8211; bootstrapping in GenStat</h2>
<p>Bootstrapping is now a popular technique for estimating the variability of estimates from a given set of data while making no assumptions about the distribution of the data. The main assumption in bootstrapping is that the observations are exchangeable. In simple circumstances this means exactly that: so, under the &#8220;null hypothesis&#8221; of no differences between the treatments, the observed data values could have been allocated to any of the observed units. To bootstrap a data set, we draw a new set of observations from the exchangeable units by sampling with replacement from the original units. In each bootstrap sample, the original observations may be omitted or sampled one or more times.</p>
<p>With the launch of the GenStat Teaching and Learning Edition comes a new menu for bootstrapping, which will also be available in the 14th Edition later this year.</p>
<p>We can illustrate the use of the menu with data in the GenStat example spreadsheet Cane.gsh (in the GenStat Data folder). This contains yields of sugar cane under a range of levels of nitrogen fertilizer. The menu is shown in Figure 1.</p>
<p><strong> Figure 1</strong></p>
<p><img class="alignnone" style="margin-left: 100px; margin-right: 100px;" src="/common/images/newsletter/21/fig1.png" alt="menu" width="500" height="284" /></p>
<p>We need to select the statistics to bootstrap from the choices in the drop-down list at the top of the menu; further boxes then appear to specify the data needed for that analysis. Here we have chosen to look at a linear regression between sugar yield and nitrogen. Running the analysis with the default options produces graphs showing the distributions of slopes and intercepts from the bootstrap resampling.</p>
<p><strong>Figure 2</strong></p>
<p><img class="alignnone" style="margin-left: 100px; margin-right: 100px;" src="/common/images/newsletter/21/fig2.png" alt="distribution of slope" width="500" height="506" /></p>
<p>Figure 2 shows the distribution of the slope, and you can see that a slope of zero is outside the 95% confidence interval. So we can be confident that there is a relationship between sugar yield and the amount of nitrogen fertilizer. The menu produces the output below.</p>
<p><img class="alignnone" style="margin-left: 100px; margin-right: 100px;" src="/common/images/newsletter/21/tab1.png" alt="output" width="500" height="94" /></p>
<p>Other statistics available in the menu include means, medians, differences between means and medians, t-statistics and correlations.</p>
<p>The menu uses the BOOTSTRAP procedure, and you can look at the Input log to see how it does this if you want to use the procedure for more complicated analyses.</p>
<p><img class="alignnone" style="margin-left: 100px; margin-right: 100px;" src="/common/images/newsletter/21/tab2.png" alt="Input log" width="500" height="182" /></p>
<p>BOOTSTRAP needs a procedure RESAMPLE to do the analysis and calculate the statistics to be studied. This has a DATA option which passes a pointer containing the resampled data into the procedure. The STATISTICS parameter lists the estimates of the various for this sample, and the EXIT parameter returns a value of 1 if the estimation has failed and 0 otherwise.</p>
<p>The DATA pointer for RESAMPLE is created from the data structures that are listed for the DATA option of BOOTSTRAP. So DATA[1] contains the y-values (Yield), and DATA[2] contains the x-values (Nitrogen). The parameter of BOOTSTRAP lists names to be used to label the statistics in the output.</p>
<p><strong>Figure 3</strong></p>
<p><img class="alignnone" style="margin-left: 100px; margin-right: 100px;" src="/common/images/newsletter/21/fig3.png" alt="Standard Curve menu" width="500" height="276" /></p>
<p><strong>Figure 4</strong></p>
<p><img class="alignnone" style="margin-left: 100px; margin-right: 100px;" src="/common/images/newsletter/21/fig4.png" alt="Standard Curve Save dialogue" width="454" height="310" /></p>
<p>We can modify RESAMPLE if we want to use this as a template for another analysis, for example, an exponential regression. The easiest way to form the commands  is to run the Standard Curves menu (under Stats | Regression Analysis) shown in Figure 3, and then set up the Save dialog (click the Save button) to save the estimated coefficients of the curve, as shown in Figure 4. After running this the Input log contains the following commands:</p>
<p><img class="alignnone" style="margin-left: 100px; margin-right: 100px;" src="/common/images/newsletter/21/tab3.png" alt="Input log" width="412" height="116" /></p>
<p>We can cut and paste this into the RESAMPLE procedure to bootstrap the analysis. We create a new text window (Ctrl+N), cut and paste the original RESAMPLE code to this window, and then paste the code above to replace the linear regression code. We need to make the following changes to exponential regression code we pasted in: change Yield to DATA[1] and Nitrogen to DATA[2], set the PRINT option of FITCURVE to * (unless you want output and graphs from the 100 bootstrap datasets!), return the 3 estimates in STATISTICS, and finally rename the parameters in the BOOTSTRAP statement to give the following amended program (with some additional editing to tidy up the code):</p>
<p><img class="alignnone" style="margin-left: 100px; margin-right: 100px;" src="/common/images/newsletter/21/tab4.png" alt="output" width="500" height="196" /></p>
<p>Running this program will now give bootstrap confidences limits for the exponential regression parameters. Figure 5 shows the bootstrap distribution of the parameter R.</p>
<p><strong>Figure 5</strong></p>
<p><img class="alignnone" style="margin-left: 100px; margin-right: 100px;" src="/common/images/newsletter/21/fig5.png" alt="Bootstrap distribution of R" width="450" height="460" /></p>
<p>So the new menu not only makes bootstrapping a straightforward process for many standard analyses, it also helps you to use the bootstrap for more complicated analyses. For more information you can either look at the on-line help for the Bootstrap menu, or the description of the BOOTSTRAP procedure in the GenStat Reference Manual 3 Procedure Library which can be opened by selecting the <em>Procedure Library</em> sub-option of the <em>Reference Manual</em> option of the <em>Help</em> menu on the menu bar.</p>
<h2>Latest training courses</h2>
<p>An Introduction to ANOVA and Design in GenStat is scheduled for 28th and 29th July in Pretoria, South Africa. More details can be found on the <a title="GenStat Training in Pretoria" href="/resources/training/genstat-training-pretoria/" target="_blank"> VSNi website</a>.</p>
<p>Our training schedule is always being updated according to user requests and requirements, so do email <a href="mailto:support@vsni.co.uk">support</a> with suggestions and any specific requirements you have and check our <a title="training" href="/resources/training/" target="_blank"> website</a> for new courses.</p>
<h2>Out and about with VSNi</h2>
<p>The 2011 events we are attending or supporting include: <a title="SUSAN 2011" href="http://www.tibs.org/interior.aspx?id=2842/" target="_blank">SUSAN</a> at the University of Botswana, Gaborone, Botswana from 27 June &#8211; 1 July 2011, the <a href="http://aasc2011.science.qld.gov.au/" target="_blank"> Australian Applied Statistics Conference</a> in Palm Cove, Tropical North Queensland from 12-15 July 2011. <a title="ISI 2011" href="http://www.isi2011.ie/" target="_blank"> 58th ISI World Statistics Congress</a> in Dublin, Ireland, from 21- 26 August 2011.</p>
<p>If you would like to meet with the VSNi staff at one of these events please email <a href="mailto:support@vsni.co.uk">support</a> to arrange the details.</p>
<p>We&#8217;re always updating the list of events we can support and sponsor &#8211; so please <a href="mailto:support@vsni.co.uk">send us</a> details of any events you are organising or involved in, and as we decide on more events for the future we&#8217;ll list them on <a href="/resources/events/" target="_blank">our website</a>.</p>
<h2>Other News from VSNi</h2>
<p>Success for the GenStat sponsored Holy Trinity Mariners U9&#8242;s football team! After a disappointing 2-0 defeat in the cup final, the Mariners returned to form with a resounding 4-0 victory in their last game of the season making them winners of the Chiltern Church U9&#8242;s League. Well done Mariners!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vsni.co.uk/2011/home-pages/vision-no-21-may-2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vision No. 20</title>
		<link>http://www.vsni.co.uk/2010/home-pages/vision-no-20</link>
		<comments>http://www.vsni.co.uk/2010/home-pages/vision-no-20#comments</comments>
		<pubDate>Tue, 30 Nov 2010 10:12:03 +0000</pubDate>
		<dc:creator>allen</dc:creator>
				<category><![CDATA[Home Pages]]></category>
		<category><![CDATA[Newsletters]]></category>

		<guid isPermaLink="false">http://www.vsni.co.uk/?p=2751</guid>
		<description><![CDATA[The plight of the natural world is more and more becoming something of concern; with reports bombarding us about the reduction and potential loss of animals and plants in the wild. Plus the more local the loss or threat to a species is to us the more people are recognising the [...]]]></description>
			<content:encoded><![CDATA[<p>The plight of the natural world is more and more becoming something of concern; with reports bombarding us about the reduction and potential loss of animals and plants in the wild. Plus the more local the loss or threat to a species is to us the more people are recognising the importance of conservation. And yet conservation projects, as with any project must be measurable, otherwise how do conservationists know whether their efforts are successful or having an impact of any kind?</p>
<p><a title="PTES" href="http://www.ptes.org" target="_blank">The People&#8217;s Trust for Endangered Species</a> has been at the heart of conservation in the UK and across the world since 1977. Despite its focus on raising funds and providing support for conservation projects the PTES still undertakes conservation work itself including a number of surveys. These surveys are as important as the conservation activities themselves and are an integral part of any conservation programme.</p>
<p>The PTES surveys and studies are run in order to help understand population numbers and changes; without understanding how a population is changing over time it is almost impossible to decide what, if any, conservation actions are required. Likewise once a project is underway the conservationists need to see whether the actions are making a difference to the species in question, and it&#8217;s here that the conservationists at PTES use statistical analysis, in the form of GenStat.</p>
<p>&#8220;It&#8217;s too big a task to count all the individuals in a population, so a sample is counted sometimes from sightings, sometimes from signs (tracks or droppings), which comes with its own &#8220;statistical error&#8221;, explained David Wembridge, of the PTES. &#8220;In addition, biological populations are naturally variable &#8211; population sizes fluctuate from year to year as prey-predator and environmental interactions change, and in order to spot underlying trends (whether a population is stable or declining in the long-term, for example), it&#8217;s necessary to statistical analyses of the data, in particular, so called trend analyses &#8211; which is what we use GenStat for.&#8221;</p>
<p>The problem with spotting underlying trends is that long datasets are needed, with data collected over a period of ten years or more. Hence the PTES run ongoing surveys, which are repeated annually; for example one such survey &#8211; the National Dormouse Monitoring Programme has been running for 22 years.</p>
<p>The graph below is a typical example of how the PTES use the survey data to understand the dormouse population.</p>
<p><strong>Hazel dormice population index 1991-2007</strong></p>
<p><img src="/common/images/mousechart.png" alt="Dormouse population chart" width="490" height="154" /></p>
<p>&#8220;There is a significant, approximately linear, decline in the years up to 2000. This appears to continue after 2000, but levels off over the last couple of years.&#8221;</p>
<p>&#8220;From 2005 the population estimate exhibits oscillations of up to 25%. The 2007 population has a strong influence on the shape of the curve, so it will be interesting to see whether the 2008 results are high, suggesting the stabilisation of the population, or low, in which case the curve will be dragged back down again.&#8221; (National Dormouse Monitoring Programme, interim report 2008)</p>
<p>Although conservationists at the PTES use a small part of GenStat, it&#8217;s another example of how GenStat is an important facet in a bigger picture. Without the trusted and reliable statistical analyses to indicate changes to populations conservationists might struggle to decide where to deploy their efforts and actions.</p>
<p>Our thanks to the PTES for their help and advice with this piece. The PTES run several surveys &#8211; to find out more or to get involved look at<a title="PTES" href="http://www.ptes.org" target="_blank"> the PTES website</a>. For more information on other conservation projects using GenStat please go to <a title="GenStat Conservation" href="/featured/conservation" target="_blank">the GenStat Conservation Pages</a>.</p>
<h2>Technical tip &#8211; correlation in GenStat</h2>
<p>The correlation matrix describes the correlation among a number of different variables. In GenStat you can view this matrix graphically using the DCORRELATION procedure. An example of the correlation within and between two datasets is given below (to replicate go to Help -&gt; Examples -&gt; DCORRELATION).</p>
<p style="text-align: center;"><img class="aligncenter" src="/common/images/novtip1.png" alt="Chart 1" width="443" height="504" /></p>
<p>&nbsp;</p>
<p>Using the strip underneath as a key, high positive correlations between variables are given by dark red colours, whilst high negative correlations are given by dark blue colours. Greens, yellows and light blues indicate low correlation. (Note that the diagonal of the correlation matrix is not plotted, though this can be added via the SHOW option.) A key in the upper right hand corner indicates the position of the variables in our calculations, e.g. the red square shows the correlation between N and Axis_2. The dashed black line indicates the separation of our two datasets, so anything within the black lines can be considered the correlation between the datasets; using the PLOT option we can separate the three parts of our plot, as seen below.</p>
<p style="text-align: center;"><img class="aligncenter" src="/common/images/novtip2.png" alt="Chart 1" width="446" height="428" /></p>
<p>Here we have used the COLOURS option to specify the colours we want representing the correlation values -1, 0 and 1 (blue, white and red respectively).</p>
<p>The DCORRELATION procedure can also be used on a single dataset or any symmetric matrix whose values are between -1 and 1, such as similarity matrices.</p>
<h2>Latest training courses</h2>
<p>Our colleagues from the University of Wageningen are running a three day course on <strong>Introduction to Mixed Model QTL Mapping Using GenStat</strong> at the Department of Genetics, ESALQ/USP, Piracicaba, SP. Avenida Pádua Dias, 11. Bairro Agronomia, Brazil on 13 to 15 December 2010. The course is designed for graduates and professionals interested in a flexible QTL mapping approach,applicable in standard situations (SIM, CIM) as well as more specialized situations (multi-environment QTL mapping, QTLxE, multi-trait QTL mapping, association mapping, in- and outbreeders). Familiarity with mixed models and quantitative genetics is recommended. For more information and to book your place please go to the <a title="QTL Mapping in GenStat" href="http://www.genetica.esalq.usp.br/en/qtls2010/" target="_blank"> website</a>.</p>
<p>Our training schedule is always being updated according to user requests and requirements, so do email <a href="mailto:support@vsni.co.uk">support</a> with suggestions and any specific requirements you have and check our <a title="training" href="/resources/training/" target="_blank"> website</a> for new courses.</p>
<h2>Out and about with VSNi</h2>
<p>Carey Biggs is attending and presenting at <a title="ASC/OZCOTS" href="http://www.promaco.com.au/2010/asc/ozcots.htm" target="_blank"> ASC/OZCOTS</a>, in Fremantle Australia, between 6 and 10 December.</p>
<p>Simon Harding &amp; David Baird, two of the VSN International software developers, will be presenting at the <a title="IBC-Floripa-2010" href="http://www.rbras.org.br/~ibcfloripa2010/" target="_blank"> International Biometric Conference</a> in Florianopolis, Brazil between 5 and 10 December.</p>
<p>Other events we are attending or supporting in 2011 include: <a title="SUSAN 2011" href="http://www.tibs.org/interior.aspx?id=2842/" target="_blank">SUSAN</a> at the University of Botswana, Gaborone, Botswana from 27 June &#8211; 1 July 2011, the Australasian Applied Statistics Conference, Palm Cove, Tropical North Queensland from 12-15 July 2011. <a title="ISI 2011" href="http://www.isi2011.ie/" target="_blank"> 58th ISI World Statistics Congress</a> in Dublin, Ireland, from 21- 26 August 2011.</p>
<p>If you would like to meet with the VSNi staff at one of these events please email <a href="mailto:support@vsni.co.uk">support</a> to arrange the details.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vsni.co.uk/2010/home-pages/vision-no-20/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vision No. 18 March 2010</title>
		<link>http://www.vsni.co.uk/2010/home-pages/vision-no-18-march-2010</link>
		<comments>http://www.vsni.co.uk/2010/home-pages/vision-no-18-march-2010#comments</comments>
		<pubDate>Wed, 17 Mar 2010 11:43:12 +0000</pubDate>
		<dc:creator>liz</dc:creator>
				<category><![CDATA[Home Pages]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[courses]]></category>
		<category><![CDATA[discovery]]></category>
		<category><![CDATA[entomology]]></category>
		<category><![CDATA[genstat]]></category>
		<category><![CDATA[ICOTS8]]></category>
		<category><![CDATA[pest management]]></category>
		<category><![CDATA[teak]]></category>
		<category><![CDATA[Tropical Forest Research Institute]]></category>

		<guid isPermaLink="false">http://www.vsni.co.uk/?p=1508</guid>
		<description><![CDATA[GenStat Discovery &#8211; helping to find integrated pest management schemes. With at least 1.3 million described species of insect, accounting for at least two-thirds of known organisms, it&#8217;s no wonder that entomology fascinates the human race. And yet understanding and studying insects is not just for those with an interest in [...]]]></description>
			<content:encoded><![CDATA[<h2>GenStat Discovery &#8211; helping to find integrated pest management  schemes.</h2>
<p>With at least 1.3 million described species  of insect, accounting for at least two-thirds of known organisms, it&#8217;s  no wonder that entomology fascinates the human race. And yet understanding and studying  insects is not just for those with an interest in the creatures;  information and knowledge on insects affects farmers and agricultural producers  who may wish to be able to control the populations living and feeding on  their crops. With such huge numbers of species, it&#8217;s easy to imagine  the potential damage to crops, and why over the centuries humans have  become fascinated with the control of these creatures, particularly in  an agricultural setting.</p>
<p>Crop pests can take on different forms  through their lifecycle, from larvae through to the final adult stage,  and can cause havoc for farmers both above and below ground. The damage caused  by insects living above the ground is often more easily identified and treated than the insects living below ground on  the roots of plants, so crop losses from soil insects are often underestimated, and sometimes even not recognised as being  caused by insects.  White grubs, the larvae of chafer beetles, are one group of species for which this is true, with  below-ground damage to plants often being extensive and in some cases causing the death of the plants. This complexity is  further compounded by the fact that some soil pests feed on different plants at the different stages of their lifecycle,  both above and below the ground. Scientists in India noted devastating effects on teak (Tectona grandis) seedlings  in the nursery beds at the Ramdongari Forest Nursery in central India associated with the presence of white grubs, with the  plant destruction causing severe economic effects. Little is often known about the biology and ecology of such white grubs,  making them one of the toughest pests to manage, often leading to the high use of chemical insecticides, rather than  Integrated Pest Management (IPM) schemes.</p>
<p>Teak is an important part of India&#8217;s economy by virtue of its  timber quality, popularity and ever-increasing demand; it is highly prized by ship builders and manufacturers of outdoor furniture  (amongst others) due to its ability to withstand most weather  conditions.  							 Combine this with the difficulty of managing white grubs, and  it&#8217;s no surprise that Dr Nitin Kulkarni from the <a title="Tropical  Forest Research Institute" href="http://envfor.nic.in/icfre/tfri/tfri.html" target="_blank">Tropical Forest Research Institute</a> in Jabalpur,  India chose to investigate the effect of the larvae of the chafer  beetles Holotrichia rustica and H. mucida on teak  seedlings. The area studied (Ramdongari Forest Nursery) accounts for around  500,000 to 800,000 teak seedlings per year and supplies seedlings for state forest departments and non-governmental  organisations, including small farmers, across central India, so is of significant economic importance to the region.</p>
<p>The researchers observed and recorded data on the adult beetle  emergence, their host preferences and populations, as well as the grub populations and damage to the teak seedlings.  They found  that typically the seedlings wilt due to the roots having been eaten, and often die. The insect count and plant damage data collected  over the four years of the study were analysed in GenStat Discovery Edition 3, the free version of GenStat  available to the developing world, using analysis of variance followed by the multiple comparison of means. Dr Kulkarni said &#8220;GenStat  covers most of the statistical analyses and yet, is very user friendly with appropriate demonstrations.&#8221;</p>
<p>It was noted that the adult beetles emerged from the teak beds  and became active at the onset of the monsoon season, when humidity had risen rapidly after pre-monsoon showers, and remained active  for approximately 18 days.  Importantly, they observed that whilst the adult beetles fed and mated on the leaves of jujube and other Ziziphus species, immature grubs of both species fed on the fine rootlets and main roots of teak seedlings. It has therefore led  to the suggestion that it may be possible to control this pest with an IPM approach by targeting adults rather than applying chemicals  against the larvae.  With adult activity triggered by measurable  weather conditions &#8211; falling temperatures and increased humidity &#8211;  manual collection of the adults on the shrubs growing on nursery field  edges appears one viable option for managing the pests without use of  toxic chemicals, as part of an IPM program.</p>
<p>Information and results from research such as this has wider  reaching impacts for entomologists looking at other white grub species, many of which are pests of food crops across the  developing world.  As well, the research progresses research into effective pest-management techniques, in this case on the  chafer beetles in Indian teak nurseries.</p>
<p>Imagine needing to conduct research of this nature but with  limited access to the appropriate tools, specifically appropriate data analysis software. Unfortunately researchers and scientists in  the developing world don&#8217;t always have access to the tools they need for their work; however data analysis software is something  they do have access to. With GenStat Discovery edition 3 these researchers were able to use high quality, respected and  appropriate software to conduct their analysis, and so provide farmers &#8211; and in this case, teak nurseries &#8211; with relevant advice and  assistance on the cultivation and protection of their crops.</p>
<p>GenStat Discovery edition 3, is widely used across the  developing world to assist in analysing and visualising data. It is free to non commercial establishments across the  developing world. For more details or to download look at the <a title="GenStat Discovery" href="/software/genstat-discovery/" target="_blank">VSNi website</a>.</p>
<p>Our thanks to Dr Rogers of <a title="Research Connections and  Consulting" href="http://www.rcac.net.au/" target="_blank">Research  Connections and Consulting</a> and to Dr Kulkarni of the <a title="Tropical Forest Research  Institute" href="http://envfor.nic.in/icfre/tfri/tfri.html" target="_blank">Tropical Forest Research Institute</a>. Dr Rogers provides pesticide-efficacy data analysis services to  the crop-protection industry and also assists authors with the preparation and submission of scientific publications.</p>
<p>The original paper (abstract) is available from <a title="Wiley  Interscience" href="http://www3.interscience.wiley.com/journal/122652743/abstract" target="_blank"> Wiley Interscience</a></p>
<h2>Technical tip &#8211; registration of GenStat  Discovery</h2>
<p>The GenStat Discovery licence is valid for one calendar year, but  a new licence key will be automatically sent to you in December,  irrespective of when you originally downloaded it if you <a href="/downloads/genstat-discovery/registration/" target="_blank">register</a>, meaning you never need be without it, nor  do you need to download another version, at the end of the year.</p>
<p>Users who have obtained their copy of GenStat Discovery through  an old or a colleague&#8217;s CD, may find they need to request a new licence  key from <a href="mailto:support@vsni.co.uk">support</a>, if the GenStat Discovery CD was made prior to the current year.</p>
<p>To register your copy of GenStat Discovery visit the <a href="/downloads/genstat-discovery/registration/" target="_blank">registration webpages</a>.</p>
<h2>Latest training courses</h2>
<p>VSNi run training courses throughout the year on a variety of topics, and we are always updating the schedule.  Our next courses on GenStat are scheduled for April 2010.</p>
<p><strong>Introduction to GenStat</strong> will take place on Monday  19th April 2010 at Apsley Paper Trail in Apsley, Hertfordshire, UK. This  course is aimed for those who need an overview of GenStat and the sklls to  start them analysing and visualising data.</p>
<p>For users who are confident with the menu system and wish to  develop their skills in programming in GenStat, the <strong>Introduction to the GenStat Command Language</strong> is being held on Tuesday 20th April  2010, again at the Apsley Paper Trail.</p>
<p>For more details or to book your place on either of these  courses please <a href="/resources/training/course-schedule/" target="_blank">register on line</a>, or email <a href="mailto:support@vsni.co.uk">support</a>.</p>
<h3>Courses at the Statistical Services Centre, University of Reading</h3>
<p>We&#8217;re pleased to tell you of additional courses in statistics run by colleagues at the Statistical Services Centre at the University of Reading; all of which allow time for practicals for  the attendee to put into practise what they have learnt:</p>
<p><strong>E-SMS</strong> &#8211; a popular online course about understanding  variability (next run scheduled 22nd March-10 May). It includes the essentials needed to describe data well (descriptive statistics) and to make  good generalisations (statistical inference).  It also covers the concept and uses of p-values, and establishes the groundwork for  statistical modelling based on simple linear regression. Find out more at <a href="http://www.ssc.rdg.ac.uk/courses/e-SMS.html" target="_blank">e-SMS  website</a>.</p>
<p><strong>Review of Basic Statistics</strong> (19-20 April) &#8211; this course  covers the basic ideas of statistcs needed in research systematically and quickly.  Mathematical details are kept to a minimum, but  concepts such as hypothesis tests, t tests, different distributions are all covered.</p>
<p><strong>Regression Analysis: A Hands-on Approach</strong> (21-22 July) &#8211;  Regression is a powerful technique for studying relationships between quantitative variables. Summarising relationships by the most  appropriate equation (modelling) is very quick using Genstat.  Find out  more about the details on this course.</p>
<p><strong>Introduction to ANOVA</strong> &#8211;  (21-22 April) is a key technique  popularly used in analysing research data. Every serious researcher  needs to acquire skills in using this technique, and to have a good  appreciation of the underlying concepts.</p>
<p><strong>What Sample Size do I need?</strong> (1 December) Choosing an  appropriate sample size is a common problem and should be given due consideration in any research proposal, as an inadequate sample  size invariably leads to wasted resources. This course aims to give a practical introduction to sample size determination in the  context of some commonly used significance tests.</p>
<p>More details on these courses and the Statistical Services Centre  is available at the <a title="SSC" href="http://www.ssc.rdg.ac.uk/" target="_blank">SSC website</a>.</p>
<h2>Out and about with VSNi</h2>
<p>From 11-16 July 2010, VSNi&#8217;s CEO, Stewart Andrews will be  presenting GenStat for Teaching at ICOTS8 in Slovenia. <a title="ICOTS8" href="http://icots8.org/" target="_blank"> ICOTS8</a> in Ljubljana in Slovenia.</p>
<p>If you would like to meet with Stewart at one of this event  please email <a href="mailto:stewart.andrews@vsni.co.uk">Stewart Andrews</a> to arrange the details.</p>
<p>We&#8217;re always updating the list of events  we can support and sponsor &#8211; so please <a href="mailto:support@vsni.co.uk">send us</a> details of any events you are organising or involved in, and as we  decide on more events for the future we&#8217;ll list them on <a href="/resources/events/" target="_blank">our website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vsni.co.uk/2010/home-pages/vision-no-18-march-2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vision No. 17 December 2009</title>
		<link>http://www.vsni.co.uk/2009/newsletters/vision-no-17-december-2009</link>
		<comments>http://www.vsni.co.uk/2009/newsletters/vision-no-17-december-2009#comments</comments>
		<pubDate>Thu, 10 Dec 2009 11:10:41 +0000</pubDate>
		<dc:creator>allen</dc:creator>
				<category><![CDATA[Newsletters]]></category>

		<guid isPermaLink="false">http://www.vsni.co.uk/?p=1115</guid>
		<description><![CDATA[As the decade ends, VSNi would like to take this opportunity to thank all our customers, supporters and associates. Thanks to support and help from our friends around the world we have been able to continue to provide world-class statistical and data analysis software tools. We celebrate the continued development of [...]]]></description>
			<content:encoded><![CDATA[<p>As the decade ends, VSNi would like to take this opportunity to thank all our customers, supporters and associates. Thanks to support and help from our friends around the world we have been able to continue to provide world-class statistical and data analysis software tools. We celebrate the continued development of our software including ASReml 3, GenStat 12 and our free versions &#8211; GenStat Discovery now at edition 3 and the new GenStat for Teaching.</p>
<p>Our plans for 2010 and beyond are to continue to provide outstanding software for the biological sciences, across the world, and specifically to assist in areas where funding is limited &#8211; the developing world and education. As the Copenhagen talks come to a close we are mindful of all our responsibilities to support scientists and researchers working to understand and suggest solutions to the issues, by providing the best and most appropriate data analysis software.</p>
<p>To find out more about  							our software, and how it assists scientists and researchers visit our <a title="VSN webpages" href="../" target="_blank">webpages</a>, or email us for a free 60 day trial at <a href="mailto:support@vsni.co.uk">support</a>, with your name and organisation quoting reference VISION17CB, and we will arrange one for you.</p>
<p>We wish you all a very happy Christmas and successful New Year. This year we have opted not to send any Christmas cards, and to support the <a title="World Food Programme" href="https://www.wfp.org/" target="_blank">World Food Programme, Gift of Hope </a>.</p>
<p>Please note our offices will be closed from 25th December to 28th December 2009, and on 1st January 2010 &#8211; we look forward to meeting and talking with you in the new year.</p>
<p>Best wishes,</p>
<p><img src="/common/images/sjasig.png" alt="Stewart Andrews signature" width="227" height="90" /> <br />
 Stewart Andrews<br />
 CEO, VSN International</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vsni.co.uk/2009/newsletters/vision-no-17-december-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vision No. 16 November 2009</title>
		<link>http://www.vsni.co.uk/2009/newsletters/vision-no-16-november-2009</link>
		<comments>http://www.vsni.co.uk/2009/newsletters/vision-no-16-november-2009#comments</comments>
		<pubDate>Sun, 01 Nov 2009 11:35:45 +0000</pubDate>
		<dc:creator>liz</dc:creator>
				<category><![CDATA[Newsletters]]></category>

		<guid isPermaLink="false">http://www.vsni.co.uk/?p=969</guid>
		<description><![CDATA[Analysing genetic data just got easier with the release of ASReml 3. ASReml 3, the outstanding data analysis software designed for fitting linear mixed models is now available for download. Already widely used by scientists and researchers in the biosciences the new procedures and functionality added to version 3 further extend [...]]]></description>
			<content:encoded><![CDATA[<h2>Analysing genetic data just got easier with the release of ASReml 3.</h2>
<p>ASReml 3, the outstanding data analysis software designed for fitting  							  linear mixed models is now available for <a title="ASReml 3 download" href="/downloads/asreml/">download</a>.</p>
<p>Already widely used by scientists and researchers in the biosciences the new procedures and functionality added to version 3 further extend ASReml&#8217;s ability to analyse large datasets and complex statistical models. Since its original launch ASReml has enabled scientists to investigate and understand relevant factors in breeding and genetics leading to for example, the identification of <a title="superior grain varieties" href="/case-studies/national-variety-trials/"> superior grain varieties</a> for farmers in Australia (based on the National Variety Trials system) and generating  							  <a title="herd heritability estimates" href="/case-studies/individual-herd-heritability-estimates-using-asreml/"> herd heritability estimates</a> (based on research at the Pennsylvania State University).</p>
<p>ASReml is vital for researchers with very large datasets, who may need to apply complex statistical models. Unlike other software systems ASReml can easily and efficiently handle large datasets. ASReml is unique in that it uses the Average Information (AI) algorithm for the fitting of linear mixed models and it is optimised for working with genetics data and hence performs considerably faster than other generic data analysis software. The superior range of variance models are specifically suited to the analysis of data arising from genetic applications in animal and plants, so ASReml is chosen by researchers and scientists who need these specific analysis tools provided in ASReml. It also has an in-built link with R for scientists and researchers who prefer to use the r programming environment rather than more generic windows based systems.</p>
<p>It was and continues to be developed by researchers working in bioscience, so the statistics are sound, valid and most importantly relevant to the needs of bioscientists. Users are supported by VSNi (if they have a support contract), a range of tutorials and user guides and by an active user community through the ASReml Forum, available through the VSNi webpages.</p>
<p>For a free 60 day trial of ASReml please email <a href="mailto:support@vsni.co.uk">support</a> with your name and organisation quoting reference VISION16CB, and  							 we will arrange one for you.</p>
<p>For more details on ASReml, look at the <a title="ASReml 3 new features" href="/software/asreml/new-features/">new features</a>.<a title="ASReml" href="/software/asreml/"><br />
 </a></p>
<h2>Technical tip &#8211; New supported platforms for ASReml 3</h2>
<p>ASReml has now been updated to run on both 32 bit and 64 bit applications of Linux both as the stand alone command driven ASReml and as the ASReml-R add on. Additionally Apple Macintosh users can run also run ASReml in a batch mode.</p>
<p>Windows (32 and 64 bit) users can use ASReml 3 as the command driven version,  Windows interface or as an add-on to R.</p>
<p>For a more detailed explanation see the <a href="/software/asreml/supported-platforms/">ASReml webpages</a>.</p>
<h2>Latest training courses</h2>
<p>VSNi run training courses throughout the year on a variety of topics, and we are currently planning the schedule for 2010. Please email <a href="mailto:support@vsni.co.uk">support</a> with any specific training requests or go to the <a href="/resources/training/courses/">training pages</a> on our website to keep updated on the latest courses.</p>
<h2>Out and about with VSNi</h2>
<p>From 29th November to 3rd December, the GenStat developer Dr David Baird will be presenting at the  							<a title="International Biometric Society Australasian Region Conference" href="https://conference.fos.auckland.ac.nz/ibsar/" target="_blank"> International Biometric Society Australasian Region Conference</a>. Dr Alison Smith, a keen ASReml user, based at Wagga Wagga Agricultural Institute  							is also presenting her work on <a title="Embedded partially replicated designs for grain quality testing" href="https://conference.fos.auckland.ac.nz/ibsar/abstracts_scientific.html" target="_blank"> grain quality testing</a> with ASReml at the conference.</p>
<p>If you would like to meet with VSNi staff at one of these events please email <a href="mailto:carey.biggs@vsni.co.uk">Carey Biggs</a> to arrange  							the details.</p>
<p>We&#8217;re always updating the list of events we can support and sponsor &#8211;                               so please <a href="mailto:support@vsni.co.uk">send us</a> details of any events you are                               organising or involved in, and as we decide on more events for the                               future we&#8217;ll list them here.<a href="/resources/events/" target="_blank"><br />
 </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vsni.co.uk/2009/newsletters/vision-no-16-november-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vision No. 15 September 2009</title>
		<link>http://www.vsni.co.uk/2009/newsletters/vision-no-15-september-2009</link>
		<comments>http://www.vsni.co.uk/2009/newsletters/vision-no-15-september-2009#comments</comments>
		<pubDate>Tue, 08 Sep 2009 14:51:35 +0000</pubDate>
		<dc:creator>liz</dc:creator>
				<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[AAABG]]></category>
		<category><![CDATA[ABIC Conference]]></category>
		<category><![CDATA[ASA-CSSA-SSSA]]></category>
		<category><![CDATA[Association for the Advancement of Animal Breeding and Genetics Conference]]></category>
		<category><![CDATA[CVA]]></category>
		<category><![CDATA[CycDesigN]]></category>
		<category><![CDATA[DGRAPH]]></category>
		<category><![CDATA[genstat]]></category>
		<category><![CDATA[genstat 12th edition]]></category>
		<category><![CDATA[QTL]]></category>
		<category><![CDATA[REML]]></category>

		<guid isPermaLink="false">http://www.vsni.co.uk/?p=545</guid>
		<description><![CDATA[GenStat 12th edition available, now including QTL menus. The latest version of GenStat, the pioneering data analysis tool for bioscientists, is now available for download. This latest edition has been updated and enhanced to include a host of new and improved statistical techniques of particular use and interest to plant breeders [...]]]></description>
			<content:encoded><![CDATA[<h2>GenStat 12th edition available, now including QTL menus.</h2>
<p>The latest version of GenStat, the pioneering data analysis tool for bioscientists, is now available for download. This latest edition has been updated and enhanced to include a host of new and improved statistical techniques of particular use and interest to plant breeders and scientists working in genetic research.</p>
<p>Specific new features include the addition of stability co-efficients and genotype + genotype-by- 							  environment biplots for use in variety trials, quantile regression and a suite of menus for QTL analysis. 							  Enhancements to the GenStat graphics features include facilities to allow interactive selection between  							  plotting components, which will assist with the interpretation of data &#8211; see the Technical Tip below 							  for more details. GenStat&#8217;s existing core areas such as regression, REML and multivariate analysis have  							  also been enhanced ensuring GenStat&#8217;s statistical techniques remain relevant, reliable and current.</p>
<p>&#8220;GenStat 12 is an outstanding achievement in terms of statistical capability,&#8221; says Stewart Andrews, CEO, VSNi, 							&#8220;and, importantly, demonstrates VSNi&#8217;s appreciation of the need to assist with solving the issues we all face. In an  							era of climate change, food shortages and food security, we have upgraded GenStat with statistical routines needed by  							scientists working to solve problems in world agriculture today.&#8221;</p>
<p>&#8220;One of the guiding principles behind GenStat&#8217;s development from its conception has always been careful consideration for scientific validity,&#8221; says Professor Roger Payne, CTO, VSNi, &#8220;GenStat&#8217;s history and pedigree provides users with the security of knowing that the results from GenStat analysis are founded on sound statistical principles. GenStat&#8217;s intelligent and well-planned menu system and comprehensive suite of diagnostic messages work together to guide users to the most correct and appropriate analyses for their data. In short, you can use GenStat with complete confidence.&#8221;</p>
<p>Also new in the 12th Edition is an interface to CycDesigN, the package for computer generation of experimental designs which constructs optimal or near-optimal block and row-column designs, via the GenStat menus. CycDesigN has been developed for scientists and researchers conducting experiments in field, glasshouse or laboratory trials, incorporating the latest research developments in experimental design. To obtain the CycDesign interface download the relevant files from the <a title="CycDesigN download" href="/downloads/genstat/cycdesign/" target="_blank">VSNI website</a>, or for more information 							  							 on CycDesign go to the <a title="CycDesigN" href="http://www.cycdesign.co.nz/index.htm" target="_blank">CycDesign website</a>.</p>
<p>For more details on GenStat, including a full list of new features and capabilities look at the <a title="GenStat" href="/genstat" target="_blank">VSNi                               website</a>.</p>
<h2>Technical tip &#8211; Interactive graphics in GenStat 12</h2>
<p>Amongst the myriad of new features for the 12th Edition of GenStat, one of the more  							exciting is the ability to use the graphics interactively by making use of the &#8216;HOT&#8217;  							components within the command DGRAPH, which allow the user to start with a basic  							plot and add elements to aid interpretation.</p>
<p>For example, the graph below shows a canonical variates biplot (figure 1) which  							makes use of another new feature for the 12th Release, the ability to plot oblique  							axes (see the command AXIS for further details).</p>
<p><img class="alignleft" style="border: 0pt none;" src="/common/images/email/aug09/figure1.png" border="0" alt="CVA chart" width="399" height="425" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>Of the four groups here, we may be interested in plotting some extra features around 							one, or more, of the groups. For this, a hotmenu can be created and displayed in  							the Graphics toolbar giving you a drop-down menu of extra features that can be  							plotted (figure 2).</p>
<p><img class="alignleft" title="Selecting plots image (fig2)" src="/common/images/email/aug09/figure2.png" alt="Selecting plots image (fig2)" width="154" height="227" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>For this example we have several options, namely plotting the  							convex hulls or group means. If we select &#8216;Convex hull West&#8217;, &#8216;Group mean North&#8217;  							and &#8216;Group mean South&#8217; they will be added to the existing plot, as seen below.  							(figure 3)</p>
<p><img class="alignleft" style="border: 0pt none;" src="/common/images/email/aug09/figure3.png" border="0" alt="CVA chart 2" width="480" height="425" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>Another element of the &#8216;hot&#8217; components is the ability to select a point and plot 							extra information about that point. For this, we would use the hotdefinition  							parameter of DGRAPH. Selecting Hotchoice mode (the, new, rightmost button in the 							Graphics toolbar) (figure 4) allows us to select any hotpoints.</p>
<p><img class="alignleft" title="The new hot component button" src="/common/images/email/aug09/figure4.png" alt="The new hot component button" width="113" height="113" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>In the example we 							selected points 1 and 22 and we can now see the orthogonal projections from those  							points onto the four oblique axes. (figure 5)</p>
<p><img class="alignleft" style="border: 0pt none;" src="/common/images/email/aug09/figure5.png" border="0" alt="CVA chart 3" width="466" height="425" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>More information about the &#8216;hot&#8217; components can be found in the help for DGRAPH.</p>
<p><br class="spacer_" /></p>
<h2>Latest training courses</h2>
<p>On 15th September we&#8217;ll be running a course on <strong>REML and                               multi-level models in GenStat</strong>. The course is designed to                               introduce the user to REML in GenStat, and provide the underlying                               knowledge and confidence to use it correctly and effectively. It                               highlights how the REML menus guide the user through very complicated                               analysis and explains the REML commands so that users can program any                               non-standard analyses.</p>
<p>The course covers 4 main sessions:</p>
<ul>
<li> Analysis of variance </li>
<li> Meta analysis </li>
<li> Spatial analysis </li>
<li> Repeated measurements </li>
</ul>
<p>For more details on both courses and to book email <a href="mailto:support@vsni.co.uk">support</a> or go to the <a href="/resources/training/courses/" target="_blank">training pages</a> on our website.</p>
<h2>Out and about with VSNi</h2>
<p><br class="spacer_" /></p>
<p>From 22-25th September Stewart Andrews (CEO) and Carey Biggs (Commercial Director) will be in Bangkok at the <a title="ABIC" href="http://www.abic.ca/abic2009.html" target="_blank">ABIC Conference 2009</a>.</p>
<p>From 27th September to 2nd October we are back in Australia at the Barossa Valley for  							  the <a title="AAABG" href="http://aaabg.org/aaabg18/" target="_blank"> Association for the Advancement  							  of Animal Breeding and Genetics Conference</a>.</p>
<p>Professor Roger Payne, our Chief Technical Officer is speaking at the  							 <a title="ASA-CSSA-SSA" href="https://www.acsmeetings.org/" target="_blank"> ASA-CSSA-SSSA</a>, in Pittsburgh between 1st and 5th November.</p>
<p>If you would like to meet with VSNi staff at one of these events please email <a href="mailto:carey.biggs@vsni.co.uk">Carey Biggs</a> to arrange  							the details.</p>
<p>We&#8217;re always updating the list of events we can support and sponsor &#8211;                               so please <a href="mailto:support@vsni.co.uk">send us</a> details of any events you are                               organising or involved in, and as we decide on more events for the                               future we&#8217;ll list them on <a href="/resources/events/" target="_blank">our                               website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vsni.co.uk/2009/newsletters/vision-no-15-september-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vision No. 14 June 2009</title>
		<link>http://www.vsni.co.uk/2009/newsletters/vision-no-14-june-2009</link>
		<comments>http://www.vsni.co.uk/2009/newsletters/vision-no-14-june-2009#comments</comments>
		<pubDate>Sun, 14 Jun 2009 14:17:55 +0000</pubDate>
		<dc:creator>liz</dc:creator>
				<category><![CDATA[Newsletters]]></category>

		<guid isPermaLink="false">http://www.vsni.co.uk/?p=527</guid>
		<description><![CDATA[Simple legumes, complex analyses Since starting work at VSNi it&#8217;s no surprise to find so many applications of our software, be it GenStat or ASReml, are working within some aspect of agricultural research; projects that range from development of new plants to new herbicides or pesticides. But this isn&#8217;t just a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Simple legumes, complex analyses</strong></p>
<p>Since starting work at VSNi it&#8217;s no surprise to find so many applications of our  			software, be it GenStat or ASReml, are working within some aspect of agricultural  			research; projects that range from development of new plants to new herbicides or  			pesticides. But this isn&#8217;t just a race to find the best, most productive type of  			grain, or the most effective pesticide, in so many cases this is linked to the  			welfare of the local ecology. More and more agricultural producers can now see a  			benefit of using the earth&#8217;s natural resources to assist in crop production.</p>
<p>Researchers at the <a title="New South Wales, DPI" href="http://www.dpi.nsw.gov.au/" target="_blank">New South Wales Department of Primary Industry</a> in Australia highlight  			the complexities of farming using one of the more traditional methods of crop production.  			Southern Australian farms have long used annual legumes in the pasture phase of crop  			rotation methods. These act as natural disease breaks and restore soil structure and  			nitrogen in the soil, as well as providing valuable, high quality feed for livestock.  			Fantastic! In the panic of today&#8217;s world on pesticide poisoning this seems an ideal solution,  			and has certainly been a good one &#8211; here we are using the earth&#8217;s natural resources and  			traditional crop rotation methods to help increase production, and as a bonus create  			livestock feed.. however it is not that straightforward.</p>
<p>The problem with annual pastures and crops, is that they are often shallow rooted and  			therefore use less rainfall than the deeper rooted perennial species. This has led to a  			significant increase in groundwater recharge with higher water tables and dry land  			salinisation in parts of Australia where the agricultural production has meant a change from  			perennial deep-rooted species to annual crops and pastures. Simple answer! Surely we just  			swap the annual pastures and crops for perennial ones… but which one? Australia is a big  			country with a diverse range of climates. How then do you determine which perennial legumes  			and herbs are best suited to Australian conditions, with so much variation between regions?</p>
<p>A team of researchers headed by Guangdi Li took on the challenge. The purpose of their  			study was to evaluate a wide range of herbaceous perennial species as potential new species  			for incorporation into the farming system of Southern Australia. Guangdi Li&#8217;s team needed to  			identify species with an ability to adapt to a broad range of environments, and species  			which are particularly suited to specific soil conditions, environments and climatic  			patterns. They evaluated 91 perennial legumes and herbs (entries) at 10 sites across  			Southern Australia. There were originally 17 sites but 7 were abandoned because of weeds or  			poor establishment leaving 4 in Western Australia, 1 in South Australia and 5 sites in New  			South Wales. Only a subset of the 91 was sown at each site, local conditions not being  			conducive to the successful establishment of many of the varieties. In fact only a handful of  			the entries were sown at all the sites. Some of the sites were chosen because they posed  			environmental constraints to plant growth and hence could be used to identify alternate  			species that may be better adapted to these more demanding environments. Those constraints  			were saline or waterlogged soils, although drier than usual conditions minimised the effects  			of waterlogging. Over the three years of the experiment there were a number of occasions that  			herbage mass and plant frequency was assessed across the ten sites, creating 67 and 21  			&#8216;environments&#8217;. Each environment provides information about the performance of the varieties,  			but of course successive samplings from the same site are not independent of each other, and  			a high correlation was expected.</p>
<p>ASReml was chosen to analyse this data because it can handle the estimation of the  			genetic correlations between pairs of environments. The analysis involves a mixed model in  			which the variance-covariance matrix of the entries in different environments is modelled  			using a factor analytic (FA) structure. The FA model facilitates the accurate prediction of  			entry means for individual environments using best linear unbiased prediction. Selection  			across a range of environments, be it the saline or waterlogged sites or even for those  			samplings taken in Summer for instance, is easily achieved by using the Predict facility in  			ASReml. Entries that showed potential in saline or waterlogged conditions can be targeted  			for inclusion in future breeding programs.</p>
<p>The complexities of this study very much reflect the complexities faced by the  			agricultural producers.  In farming there are often no straightforward, obvious  			answers to the questions posed and the problems faced. This is why research and  			studies such as Guandi Li&#8217;s are so important; they give evidence based on sound  			science and statistical analysis techniques which show the importance of specific  			types of plants; in this instance Lucerne, which performed well over a broad range of  			environments. This in itself suggests projects are needed to fully exploit this  			plant so that its limiting factors (susceptibility to acid conditions and heavy  			grazing) can be overcome. Additionally Guangdi Li and his team showed that there is  			a range of deep-rooted perennial legumes and herbs which could be used in the  			Southern Australian farming system, rather than relying on a narrow range. The  			impact of the results of this and future trials are huge, it is yet another step  			closer to even better planned farming policies and methods, and hence to a true  			understanding of how we best feed ourselves and the world.</p>
<p>There is no doubt that sound scientific research is needed on which to base future crop,  			farming methods or policy decisions; research that is built using proven scientific tools.  			VSNi are a key provider of these tools; we know this because many agricultural scientists  			rely on us to continue providing high quality, relevant statistical analysis software built  			by statisticians who understand the complexities of agricultural research and data.</p>
<p>For more details on ASReml, its capability and why over 41% of papers presented at the last meeting of the Australian Association for the Advancement of Breeding and Genetics cited ASReml look at the <a title="ASReml" href="/asreml" target="_blank">VSNi website</a>.</p>
<p><strong>Technical tip &#8211; New Guide for Analysing Climatic Data in GenStat</strong></p>
<p>We are delighted to announce a new guide which is available for download from the <a title="GenStat Guides" href="/resources/documentation/" target="_blank">VSNi website</a>.  The new guide titled Analysing Climatic Data using GenStat, covers an introduction to GenStat, data input and basic data manipulation, simple statistical inference, including the use of boxplots and comparison of means and basic regression. After mastering the basics, the guide explains the summary and presentation of climatic data and then more detailed explanation of statistical methods including linear, non-linear, multiple regression and multivariate analysis. Finally, the guide assists users with GenStat programming for those who want to move from menus to more complex modelling and analysis.</p>
<p>Our thanks to the <a title="Statistical Services Centre" href="http://www.ssc.reading.ac.uk/" target="_blank">Statistical Services Centre</a> at the University of Reading for this guide.</p>
<p><strong>Latest training courses</strong></p>
<p>New courses coming over the summer include:</p>
<ul>
<li>Introduction to ANOVA, 9th-10 July, Apsley, Hertfordshire, UK</li>
<li>Introduction and Intermediate ASReml, 12-13 August, Apsley, Hertfordshire, UK</li>
<li>REML and multi-level models in GenStat, 15 September, Apsley, Hertfordshire, UK</li>
</ul>
<p>GenStat users who are looking for assistance with Analysis of Variance should book onto the Introduction to ANOVA on 9th to 10th July, in Apsley, Hertfordshire, UK.</p>
<p>The aim of the course is to introduce ANOVA techniques and develop the fundamental knowledge and skills to use them correctly and effectively. The basic principles of experimental design will also be included to aid the effective planning of experiments and investigations.</p>
<p>By the end of the course users will be able to:</p>
<ul>
<li>Select an experimental design appropriate to the requirement of your investigations.</li>
<li>Use randomization to avoid bias in the allocation of units to treatments, to ensure that results are reliable and unaffected by any systematic patterns in the units.</li>
<li>Determine how many replicates are required for your designs.</li>
<li>Use blocking to increase the accuracy of an experiment by forming the basic units (e.g. plots or subjects) into groups with similar properties.</li>
<li>Analyse simple to sophisticated designs, explaining ideas such as balance, and to recognise the GenStat features available for the analysis of unbalanced designs.</li>
<li>Compare several types of treatment in the same experiment.</li>
<li>Interpret experimental results and produce relevant tables, graphs and figures for publication in reports and papers.</li>
</ul>
<p>Dr Arthur Gilmour is running Introduction and Intermediate ASReml Courses on 12-13 August again in Apsley, Hertfordshire. Participants will gain an insight into the concepts underlying ASReml and hands on experiences relevant to their own applications. Participants are welcome to prepare examples they would like analysed during the workshop and forward them before the end of July to support, so that the courses can be tailored to include specific user examples.</p>
<p>Day one will cover an Introduction to ASReml and simple univariate models. On day two participants will cover variance structures and be able to bring their own examples for discussion.</p>
<p>On 15th September we&#8217;ll be running a course on REML and multi-level models in GenStat. To take advantage of the early bird discount book before 31st July 2009. The course is designed to introduce the user to REML in GenStat, and provide the underlying knowledge and confidence to use it correctly and effectively. It highlights how the REML menus guide the user through very complicated analysis and explains the REML commands so that users can program any non-standard analyses.</p>
<p>The course covers 4 main sessions:</p>
<ul>
<li>Analysis of variance</li>
<li>Meta analysis</li>
<li>Spatial analysis</li>
<li>Repeated measurements</li>
</ul>
<p>For more details and to book email support or go to the training pages on our website.</p>
<p><strong>Out and about with VSNi</strong></p>
<p>We are delighted to be sponsoring two events in Italy &#8211; the ICORS 09 (International Conference on Robust Statsitics) in Parma from 14-19 June, and then later the EUCARPIA conference in Bergamo on 21-24 June.</p>
<p>This year we are looking forward to visiting old and meeting new friends when our CEO Stewart Andrews speaks on GenStat Discovery and the importance of agricultural research in Africa at the ISI 2009, in Durban (16-22nd August). Stewart will also lead a session on data analysis software for the developing world; more details to follow.</p>
<p>August is looking a busy time as we are also speaking and sponsoring the 14th Australasian Plant Breeding &amp; 11th SABRAO Conference from 10-14th August at Cairns Convention Centre in Queensland.</p>
<p>From 2-4th September we&#8217;ll be in Dundee at the EUCARPIA 2009 XIV meeting of the Biometrics in Plant Breeding Section.</p>
<p>If you would like to meet directly with a VSNi attendee at these events please email Carey Biggs to make the arrangements.</p>
<p>We&#8217;re always updating the list of events we can support and sponsor &#8211; so please send us details of any events you are organising or involved in, and as we decide on more events for the future we&#8217;ll list them on our website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vsni.co.uk/2009/newsletters/vision-no-14-june-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vision No.13 Apr 2009</title>
		<link>http://www.vsni.co.uk/2009/featured/vision-no13-apr-2009</link>
		<comments>http://www.vsni.co.uk/2009/featured/vision-no13-apr-2009#comments</comments>
		<pubDate>Mon, 04 May 2009 15:31:54 +0000</pubDate>
		<dc:creator>liz</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[bees]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[NAG routines]]></category>
		<category><![CDATA[training courses]]></category>

		<guid isPermaLink="false">http://www.vsni.co.uk/?p=407</guid>
		<description><![CDATA[The links between GenStat and NAG go back many years, but did you know that you can now access many of NAG's numerical algorithms from within GenStat?]]></description>
			<content:encoded><![CDATA[<h3>NAG routines in GenStat.</h3>
<p>The links between GenStat and NAG go back many years, but did you know that you can now access many of NAG&#8217;s numerical algorithms from within GenStat?</p>
<p>For example, to solve the polynomial in Figure 1 (poly1) for y = 0, set the NAG option name equal to c02agf, the algorithm for solving zeros of polynomials.</p>
<p><img src="/common/images/email/Mar09/poly1.png" alt="[Figure 1]" width="575" height="575" /></p>
<h3>Bee Breeding Secrets. <br />
</h3>
<p>There is something about bees that trigger happiness in people. Whether it&#8217;s the thought of honey dripping  on toast or admiration for the organisation and industry of the little insects, you don&#8217;t have to be a bee keeper to like these pretty and industrious insects. Honey in itself is also highly regarded, be it for the taste, or  the health-giving properties that are increasingly being assigned to it. But bees are also important for the  pollination in nature and therefore agriculture.</p>
<p>But a bee is not just a bee; different strains and species of bee have different characteristics and  			behaviour patterns, so bee keepers and breeders need to be able to identify specific strains in order that  			they breed the most suitable bees for their requirements. There are obvious physical aspects that can be used  	such as size, colour or shape, but these methods are not foolproof and often hide specific strain differences.  		Another option is DNA testing, but this is an expensive and time consuming exercise, therefore a method first  	identified and introduced before the 1960&#8242;s can be used, known as morphometry.</p>
<p>Morphometry is a study of bee anatomy to establish race or strain characteristics, that are otherwise  		difficult to ascertain. The types of anatomy studied are the wings, tongue length, Tomentum width (width of  		the band of hair on the body segments) and hair length. The most common test and study is on the bee wings,  	looking at vein formation. Specifically bee breeders look at the &#8220;cubital index&#8221;, which is the ratio between  		two vein segments of the cubital cell in a bee&#8217;s wing, and  the &#8220;discoidal shift&#8221;, which measures the position  of the discoidal joint in relation to the perpendicular through the distal lower joint in the radial cell.</p>
<p>The concept of understanding which bee strain or race is important for bee breeding; as the more purer bee  	strains can have a better temper (this is not always true, as some inbred bees can be very cross), and therefore  	there is a less chance of being stung, likewise they seem to keep cleaner and more organised hives than their  	hybrid cousins. Beyond these &#8220;housekeeping&#8221; issues there is the bees actual performance, for example  			researchers have found that certain strains of bee respond quicker to Spring stimulation than others, this is  		important if the bees are being used for pollination, as it means some strains of bees are more active earlier  		than others.</p>
<p>The more a bee keeper or bee breeder knows about his bees the more sure he can be about how they will perform and behave. And it seems beewing morphometry can give an indication of the strain or subspecies of Apis mellifera.</p>
<p><img src="/common/images/bee1.png" alt="[Forewing of Dark European honey bee, Apis mellifera mellifera]" width="466" height="248" /></p>
<p>The Dark European honey bee, or Apis mellifera mellifera, is defined by having a cubital index of no more  		than 1.9 and the discoidal shift angle of no more than 0 (although these are ideal standards and not always  		attainable). Results from the measurements from any hive or colony are displayed on a scattergram and bee  		keepers and breeders can see how pure their bees are. Jacob Kahn has taken this research further and used  		GenStat to analyse the measurements more in keeping with quantitative population genetics. He doubled the  		sample size of 30, normally used by honey bee morphometrists, to a sample size of 60 . 10 of these have had  	their measurements checked for goodness of fit of normal distribution, and the results showed that only one  		did not conform to normality. He then looked at any correlation between the cubital index and discoidal shift  		and found that 6 samples displayed correlation. Jacob hopes that further research and work on this will verify  		his findings, which would suggest that any correlation indicates genetically purer samples. Jacob suspects that  	there is a misconception, especially among amateurs, as to what is pure and what is a hybrid. &#8220;The term hybrid is generally misunderstood by beekeepers,&#8221; says Jacob, &#8220;We can talk here about two levels of hybridization: a  		cross between species can be termed hybridization, but a cross between two strains within a subspecies carrying  	different alleles of particular loci can also be said to be hybrids. and it is this aspect of population  			genetics which I am hoping to clarify with the help of GenStat.&#8221;</p>
<p><img src="/common/images/bee2.png" alt="[Forewing of Dark European honey bee, Apis mellifera mellifera]" width="466" height="248" /></p>
<p>At the moment bee keepers and breeders are content with looking at simple scattergrams to check for bee  	purity, however Jacob&#8217;s work shows that there maybe even more details to discover about bee species or strains.  	Either way GenStat&#8217;s sound statistics has enabled Jacob to dig deeper into the data and initial analysis to find out more about the bees. This additional level of information should allow better definition of variants of Apis m. mellifera which in turn gives bee keepers and breeders greater information on their hives and colonies so they can breed better performing bees.</p>
<p>For more details on GenStat and its capability look at the <a title="GenStat" href="/software/genstat/" target="_blank">VSNi website</a>.</p>
<p><a id="Technical" name="technical"></a></p>
<p>Likewise to integrate the polynomial between the values -4 and 3, set the option name to d01ahf, the algorithm for simple integration.</p>
<p>At present many of the algorithms with regards linear programming problems, differentiation, integration and ordinary differential equations have been included. Integral equations and partial differential equations will be included in the 12th edition.</p>
<p>Go to the Help menu, select Examples, then Commands and open 	the NAG topic to see the full list of routines available as well as examples for each one.</p>
<p>For more information on this, look at Simon Harding&#8217;s (VSNi software developer) <a title="Simon Harding's talk on NAG routines in GenStat" href="http://clients.net2000.com.au/%7Egenstat2008/Talks/Harding%20S.pdf" target="_blank">talk</a> at the Australasian GenStat User Conference.</p>
<p><a id="training" name="training"></a></p>
<h3>Latest training courses</h3>
<p>For the more advanced GenStat users who are looking for assistance with Analysis of Variance, book onto the <strong>Introduction  to ANOVA</strong> on 9th to 10th July, in Apsley, Hertfordshire, UK. For more details and to book email <a title="email link to support" href="mailto:support@vsni.co.uk">support</a> or go to the <a href="/resources/training/courses/introduction-to-anova/" target="_blank">training pages</a> on our website.</p>
<p>The aim of the course is to introduce ANOVA techniques and develop the fundamental knowledge and skills to use them correctly and effectively. The basic principles of experimental design will also be included to aid the effective  	planning of experiments and investigations.</p>
<p>By the end of the course users will be able to:</p>
<div style="margin-left: 2em;">- Select an experimental design appropriate to the requirement of your investigations.</div>
<div style="margin-left: 2em;">- Use randomization to avoid bias in the allocation of units to treatments, to ensure that results are reliable and unaffected by any systematic patterns in the units.</div>
<div style="margin-left: 2em;">- Determine how many replicates are required for your designs.</div>
<div style="margin-left: 2em;">- Use blocking to increase the accuracy of an experiment by forming the basic units (e.g. plots or subjects) into groups with similar properties.</div>
<div style="margin-left: 2em;">- Analyse simple to sophisticated designs, explaining ideas such as balance, and to recognise the GenStat features available for the analysis of unbalanced designs.</div>
<div style="margin-left: 2em;">- Compare several types of treatment in the same experiment.</div>
<div style="margin-left: 2em;">- Interpret experimental results and produce relevant tables, graphs and figures for publication in reports and papers.</div>
<p><a id="Out" name="Out"></a></p>
<h3>Out and about with VSNi</h3>
<p>We&#8217;re always looking for events we can support and sponsor &#8211; so please <a title="email link to support" href="mailto:support@vsni.co.uk">send us</a> details of any events you are organising or involved in, and as we decide on more events for the future we&#8217;ll list them on <a href="/resources/events/" target="_blank">our website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vsni.co.uk/2009/featured/vision-no13-apr-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vision No. 12 Feb 2009</title>
		<link>http://www.vsni.co.uk/2009/featured/vision-no-12-feb-2009</link>
		<comments>http://www.vsni.co.uk/2009/featured/vision-no-12-feb-2009#comments</comments>
		<pubDate>Wed, 04 Feb 2009 15:43:45 +0000</pubDate>
		<dc:creator>allen</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[africa]]></category>
		<category><![CDATA[elephants]]></category>
		<category><![CDATA[genstat]]></category>
		<category><![CDATA[GGEbiplot]]></category>
		<category><![CDATA[GGEbiplot procedure]]></category>
		<category><![CDATA[newsletter]]></category>
		<category><![CDATA[Wildlife Conservation Society]]></category>
		<category><![CDATA[world potato congress]]></category>

		<guid isPermaLink="false">http://www.vsni.co.uk/?p=359</guid>
		<description><![CDATA[Our latest newsletter. Featuring articles: Protecting Elephants, GGEbiplot procedures and more. ]]></description>
			<content:encoded><![CDATA[<h3>Can you imagine a world without elephants?</h3>
<p><img class="aligncenter" style="margin-left: 50px; margin-right: 50px;" src="/common/images/email/feb09/loango_elephant.png" alt="This female elephant was fitted with a GPS collar in the Loango National Park, in southeast Gabon. Loango is also known as the land of the surfing hippos since the resident hippo population can occasionally be seen in the Atlantic surf. Probably due to human pressure and a small roadless forest area, the Loango elephants had the smallest mean home range size of any of the study sites." width="500" height="484" /></p>
<p>Elephants &#8211; their sheer size, incredible looks combined with intelligence, shyness             and gentle nature are awe inspiring to most people; indeed is there a child in the             world who is not wowed by them&#8230;so can you imagine a world without them?</p>
<p>It&#8217;s not news that elephants are endangered; for literally thousands of years ivory             has driven hunters to kill these magnificent beasts. Combine this deliberate             destruction with increased land use change and habitat transformation by private             enterprise, international aid and government expansion across Africa and these             magnificent beasts are still under threat even within the national parks and other             protected areas set aside for them.</p>
<p>However, before we get too carried away with horrific idea that elephants may well become extinct; there is another side to this. Two separate taxa, or races, of elephants exist in Africa today: the savannah elephant, which is well known and has been studied and valued by the international tourist trade for decades, and the diminutive forest elephant, which until recently has remained in obscurity beneath the trees. In the Congo Basin, an area noted for being one of the great wilderness areas with the second largest rainforest on earth &#8211; it is home to an outstanding range of             biological diversity; forest elephants have until recent decades thrived. These types             of wildernesses have always been recognised for their high conservation value, being             home to a wide variety of flora and fauna, and as such provide invaluable resources of             timber, minerals and other natural resources. The Congo Basin is a typical case where             the resources available are in high demand in rich, industrial nations and are also             critical to the economies of poor nations. And it is at this point we in the Western             developed world need to be very careful about conservation and conservation techniques;             the international conservation efforts are aimed at managing and promoting sustainable             natural resource exploitation and functional ecosystems. It is incredibly important             that we recognise the needs of people in the developing world, and try to ensure they             are able to exploit their natural resources in ways that do not fundamentally alter the             ecology of the environment, upon which millions of rural people still depend.</p>
<p>The high value of resources in these wilderness areas means that it is only fair             that Africans have an opportunity to exploit and benefit from them and are encouraged             to do so legally, ethically and with an eye on their own local ecology.</p>
<p>Complications occur as industrial expansion pushes into the wildernesses to obtain             these natural resources, an expansion that relies on a network of roads and rail             infrastructure. It is this increase in roads that appears to be causing some of the             biggest threats to the forest elephants. Illegal elephant killings tend to occur close             to roads, since these areas are easily accessible, so the density of forest elephants             in the protected areas is determined, not by the size of the area but by how many roads             criss-cross through the wilderness.</p>
<p><img class="alignleft" style="margin-right: 30px;" src="/common/images/email/feb09/from_forest_to_road.png" alt="A logging roadhead penetrating ever deeper into the Minkébé forest block in northeast Gabon. At the time of writing, Minkébé is the largest block of undisturbed forest remaining in central Africa, and contains its most important forest elephant population…road management will be a critical determinant of the future of the Minkébé elephants." /></p>
<p>Elephants are by their nature, shy and avoid human contact as much as possible, so             how are they reacting to the increasing number of roads across their home ranges? Will             they adopt a &#8220;siege&#8221; mentality and reduce their home range to avoid roads, or a             &#8220;skirmish&#8221; strategy, where they will continue to range widely, irrespective of the             number of roads?</p>
<p>I spoke with Stephen Blake of the Wildlife Conservation Society and Max Planck             Institute of Ornithology who has recently headed up a study into this very issue. His             team fitted a large sample of forest elephants in the Congo Basin with GPS telemetry             collars, so that they could track their roaming behaviour. They collected data from 28             elephants located in conservation areas in the Congo, Central African Republic and             Gabon.</p>
<p><strong>Figure 1: Relationship between area of MCP home range and the area of road-less             polygon; y axis &#8211; Home range size (kmsq), x axis roadless polygon size             (kmsq).</strong></p>
<p><img class="aligncenter" style="margin-left: 50px; margin-right: 50px;" src="/common/images/email/feb09/chart1.png" alt="Figure 1: Relationship between area of MCP home range and the area of road-less polygon; y axis - Home range size (kmsq), x axis roadless polygon size (kmsq)." /></p>
<p><strong>Figure 2:Maximum linear displacement versus area of road-less polygon; y axis             maximum linear distance moved (km), x axis roadless polygon size (kmsq).</strong></p>
<p><img class="aligncenter" style="margin-left: 50px; margin-right: 50px;" src="/common/images/email/feb09/chart2.png" alt="Figure 2:Maximum linear displacement versus area of road-less polygon; y axis maximum linear distance moved (km), x axis roadless polygon size (kmsq)." /></p>
<p>&#8220;The data we collected covered the sex of the elephant, the site (the protected area in which the elephants were collared, the number of roads in the area, the number of days the elephants were collared,&#8221; explained Stephen, &#8221; I initially analysed the result collected in GenStat, using linear regression for data exploration followed by fitting standard curves to the data (Figures 1 and 2). GenStat was vital in the research programme as I can trust the statistical procedures, I was able to talk directly with developers when I came up against any queries. I have found the Genstat support team to be extremely helpful, I usually get a response to a query within 24 hours and often much sooner. We could have gone much further with the analysis, but in order to understand the influence of roads on forest elephant ranging, the regression options in the Genstat menu showed us clear statistical patterns.&#8221;</p>
<p>Results indicated that the forest elephants routinely crossed protected roads, however only 1 elephant crossed an unprotected road, and of these one did so, as far away from the nearest village as she could, and her speed increased as she crossed the road.</p>
<p>&#8220;Our study showed that elephants seem to adopt a siege mentality with the encroaching roads&#8221;, said Stephen Blake, &#8220;and the issue with this is that over time the elephants will have less and less access to food, in quantity and variety, leading to food competition and aggression; both of which are likely to lead to a reduction in population.&#8221;</p>
<p>The main issue seems to be that elephants are risk averse, hence why they avoid roads where they can&#8230;so here we have a problem&#8230;central African states need the income earned from the natural resources found in their countries; but not only do we not want to see the elephants themselves to disappear, a change like that to any ecosystem is likely to have more wide ranging impacts.</p>
<p>&#8220;There are options for policies to overcome the issues, before it is too late,&#8221; says Stephen, &#8220;based on our research, we recommend that no new roads are built on existing forest elephant conservation areas, but to access the natural resources near these sites temporary roads should be built, so that once the resources are exhausted the area can easily return to natural wilderness. The other option is to try to reduce the elephants fear of roads, by preventing settlements on the roads, enforcing anti-poaching. These are of course expensive options, but without addressing this we face losing these beautiful creatures.&#8221;</p>
<p><a href="http://www.wcs.org/"><img src="/common/images/email/feb09/wcs-home-logo.gif" alt="[WCS]" width="101" height="102" /></a>More information on the Wildlife Conservation Society and its forest elephant project visit the Wildlife Conservation Society; and for more details on GenStat and its capability.</p>
<p>Find out more about the role GenStat plays in <a title="Elephants, bees and crop protection" href="/2008/case-studies/save-the-elephants/" target="_blank">understanding             elephants</a> and their behaviour &#8211; this time in Kenya with <a title="Save the Elephants" href="http://www.savetheelephants.org/" target="_blank">Save the             Elephants</a> &#8211; as featured on the <a title="The Secret Life of Elephants" href="http://www.bbc.co.uk/programmes/b00gvl9w" target="_blank">BBC</a>, January             2009.</p>
<p><a href="http://www.bbc.co.uk/programmes/b00gvl9w"><img src="/common/images/email/feb09/bbc.png" alt="[BBC]" width="585" height="100" /></a></p>
<p><a id="Technical" name="technical"></a></p>
<h3>Technical tip &#8211; GGEbiplot procedure</h3>
<p>A recent enquiry to <a href="/forum/">VSNi&#8217;s             forum</a> asked about a procedure for GGEbiplot, based on GGE Biplot Analysis (2003) by             W Yan and M S Kang (CRC Press). The procedure will be included in GenStat 12th edition,             but several users have requested and received a sneak preview.</p>
<p>The procedure carries out a principal components analysis, to examine genotype (G)             and genotype-by-environment interaction (GE) effects. Many different forms of plots are             available to help determine how genotypes perform in certain environments. A simple             scatter plot can have convex hulls added, which then can be used to divide the plot             into sectors (Figure 1).</p>
<p><img src="/common/images/email/feb09/gge1.png" alt="[Figure 1]" width="600" height="716" /></p>
<p>Alternatively, a comparison plot can plot many concentric circles, to ascertain the             best performing genotypes in certain environments (Figure 2).</p>
<p><img src="/common/images/email/feb09/gge2.png" alt="[Figure 2]" width="600" height="683" /></p>
<p>To obtain an advance copy, mail <a href="mailto:support@vsni.co.uk">Support</a> or             register your interest on the <a title="Link to VSNi forum" href="/forum/">Forum</a>.</p>
<p><a id="Out" name="Out"></a></p>
<h3>Out and about with VSNi</h3>
<p>Look out for us at the <a href="http://www.wpcnz.org.nz/" target="_blank">World             Potato Congress</a>, from 22nd to the 25th March at Christchurch, New Zealand.</p>
<p>We&#8217;re always looking for events we can support and sponsor &#8211; so please <a href="mailto:support@vsni.co.uk">send us</a> details of any             events you are organising or involved in, and as we decide on more events for the             future we&#8217;ll list them on <a href="/resources/events/">our website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vsni.co.uk/2009/featured/vision-no-12-feb-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vision No. 11 Nov 2008</title>
		<link>http://www.vsni.co.uk/2008/newsletters/vision-no-11-nov-2008</link>
		<comments>http://www.vsni.co.uk/2008/newsletters/vision-no-11-nov-2008#comments</comments>
		<pubDate>Sat, 08 Nov 2008 13:43:39 +0000</pubDate>
		<dc:creator>allen</dc:creator>
				<category><![CDATA[Newsletters]]></category>

		<guid isPermaLink="false">http://www.vsni.co.uk/?p=346</guid>
		<description><![CDATA[Teaching with GenStat With all the complexities facing the world from climate and environment changes to how we feed the world, one thing is clear &#8211; we need research in order to plan effectively. And research needs well trained researchers; people who understand agricultural issues and concerns, and who know how [...]]]></description>
			<content:encoded><![CDATA[<h3>Teaching with GenStat</h3>
<p>With all the complexities facing the world from climate and environment changes to how we feed the world,  one thing is clear &#8211; we need research in order to plan effectively. And research needs well trained researchers;  people who understand agricultural issues and concerns, and who know how to research effectively.  GenStat is known as a key research tool for many agricultural and other bioscience researchers,  but we were delighted to find GenStat also has an important role to play in the teaching of these areas.</p>
<p>A key user of GenStat is the IAMZ in Zaragoza, Spain, whose main aim is to train people in how to do research.  The IAMZ stands (in Spanish) for the Mediterranean Agronomic Institute of Zaragoza, it is one of the 4 sites of  the CIHEAM (International Centre for Advanced Mediterranean Agronomic Studies). The main purpose of the CIHEAM  is &#8220;to develop cooperation between Mediterranean countries through postgraduate training and promotion of  cooperative research in the field of agriculture and natural resources.&#8221; As a part of this the IAMZ develops  Master programmes and advanced courses for professionals designed to update and further the training of  researchers in agriculture and its related sciences.</p>
<p>Students come from all over the world to study for the Master programmes,  some are straight from their first degree and wish to complete their education,  and some are already at work and wish to update their knowledge and understanding  of agricultural research. I spoke with Dr Ramzi Belkhodja from the IAMZ,  who heads up the Master in plant breeding. The programme covers several areas,  one of which being statistics and the use of statistics in plant breeding research.  Dr Belkhodja and his colleagues recognised the need for anyone either in plant  breeding research or planning on entering the field, to have a good understanding and grounding in statistical methods.</p>
<p>Currently the team teach their statistics course using GenStat.  Given GenStat&#8217;s history in agricultural research it is perhaps no  surprise that it is used as the phraseology and terminology reflects the language used in the biosciences.  GenStat contains a huge range of statistical techniques; in fact you would be hard pushed to find a  statistical test or routine not included in GenStat. However, it isn&#8217;t just GenStat&#8217;s inherent  statistical strength or its history that makes it so useful to Dr Belkhodja and his colleagues.</p>
<p>GenStat&#8217;s straightforward Windows menu system means that the statistics is easy to teach  and importantly easy for the students to pick up and understand,  indeed Dr Belkhodja told me that the students are up and running with GenStat  and statistical techniques within 3 teaching sessions.   The self-explanatory menu system means that the statistical methods and concepts are easy to manage and understand.   Combined with the speed and ease of importing any data from Excel (for example) into GenStat,   and the lecturers at IAMZ can spend less time on the complicated syntax and more time on the analysis itself.</p>
<p>Given the students come from all over the world;   GenStat also provides an added advantage for those coming from the developing world.   When the students return, they can obtain a free copy of GenStat &#8211; as GenStat Discovery, to continue their research.    So, in a world where &#8220;time is money&#8221;, students don&#8217;t need to learn a new package in their work environment;    they can implement their learning and statistical understanding in a package they already know and trust.</p>
<p>More information on GenStat is available on the <a title="GenStat" href="/software/genstat">VSNi website </a> and for more details on the work and courses of the IAMZ <a title="IAMZ" href="http://www.iamz.ciheam.org/">look here</a>.</p>
<p><a id="Product" name="Product"></a></p>
<h3>Product News</h3>
<p>ASReml, now at version 2, offers free add-ons for supported ASReml licenses, for S and R. Details on how to download this can be found on the <a title="ASReml homepage" href="/software/asreml/">VSNi website.</a> Users will need to install their existing asreml.lic license key in C:\program files\Common Files\VSN International\Licenses which will enable the R and S add on to work, once downloaded. If they do not have this directory then they will need to install the asreml.lic file in the Bin directory within R and or S.</p>
<p><a id="Technical" name="technical"></a></p>
<h3>Technical tip &#8211; User Support</h3>
<p>Whether you are installing a new license key for the first time or a replacement license key because you have changed your PC, you may come across the below error message:</p>
<p><img src="/common/images/email/nov08/license-error.gif" border="0" alt="[license-error image]" width="420" height="264" /></p>
<p>The reason for this error message is generally due to the following:</p>
<div style="margin-left: 2em;">- The license key is being installed onto a different machine from where the license request came from</div>
<div style="margin-left: 2em;">- The PC has been reconfigured or reformatted, since the license request was made, changing the Host ID of the machine.</div>
<p>Sometimes neither of the above has occurred, which means that your PC may be generating a new MAC address each time you reboot, which keeps changing the Host ID every time you use the machine.</p>
<p>The only way that users can overcome the problem if this keeps occurring is by sending us their machine details. The way to display these is by opening up a command Prompt and typing in ipconfig/all and selecting enter. This will display their machine details which they then will need to send us, the Host name and Physical address, for us to send them a license key. This will then solve the problem of the Host ID error message appearing regularly.</p>
<p><a id="Out" name="Out"></a></p>
<h3>Out and about with VSNi</h3>
<p>Another successful Australian GenStat User Conference is underway; this year the agenda covers a variety of presentations from developers and users alike based on &#8220;Biometrics in Primary Industries and the Environment&#8221;. Thank you to the organisers; and all those attending who will help to make a successful event.</p>
<p>We&#8217;re always looking for events we can support and sponsor &#8211; so please <a href="mailto:support@vsni.co.uk">send us</a> details of any events you are organising or involved in, and as we decide on more events for the future we&#8217;ll list them on <a href="/resources/events/">our website</a>.</p>
<p><a id="training" name="training"></a></p>
<h3>Latest training courses</h3>
<p>The next training course is for Regression, nonlinear and generalized linear models in GenStat, scheduled for 5th and 6th March 2009 at The Paper Trail in Apsley, UK. To find out more or to book please look at the <a href="/resources/training/courses">training page</a> on our website.</p>
<p>As a part of our continued update and development of our courses, please let us know if you have any <a href="mailto:training@vsni.co.uk">suggestions</a> or topics for future training.</p>
<p>Don&#8217;t forget that we also offer specific on-site training if our current schedule doesn&#8217;t fit with your requirements. Please email <a href="mailto:training@vsni.co.uk"> the training team</a> for prices and further information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vsni.co.uk/2008/newsletters/vision-no-11-nov-2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

