ggtern.com Report : Visit Site


  • Ranking Alexa Global: # 2,855,472

    Server:Apache...

    The main IP address: 208.113.197.139,Your server United States,Brea ISP:New Dream Network LLC  TLD:com CountryCode:US

    The description :ggtern: ternary diagram plotting software for the r statistical programming language...

    This report updates in 04-Sep-2018

Created Date:2013-12-07
Changed Date:2018-02-14

Technical data of the ggtern.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host ggtern.com. Currently, hosted in United States and its service provider is New Dream Network LLC .

Latitude: 33.930221557617
Longitude: -117.88842010498
Country: United States (US)
City: Brea
Region: California
ISP: New Dream Network LLC

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called Apache containing the details of what the browser wants and will accept back from the web server.

Content-Encoding:gzip
Transfer-Encoding:chunked
Vary:Accept-Encoding
Keep-Alive:timeout=2, max=100
Server:Apache
Connection:Keep-Alive
Link:; rel="https://api.w.org/", ; rel=shortlink
Date:Tue, 04 Sep 2018 15:19:03 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns1.dreamhost.com. hostmaster.dreamhost.com. 2018071803 17482 1800 1814400 14400
ns:ns1.dreamhost.com.
ns2.dreamhost.com.
ns3.dreamhost.com.
ipv4:IP:208.113.197.139
ASN:26347
OWNER:DREAMHOST-AS - New Dream Network, LLC, US
Country:US
mx:MX preference = 0, mail exchanger = mx1.dreamhost.com.
MX preference = 0, mail exchanger = mx2.dreamhost.com.

HtmlToText

ggtern: ternary diagrams in r docs news demo literature publications resources contact what is ggtern? ‘ggtern’ is a software package for the statistical computing language r. it is an extension to ggplot2 [ 1 ] specifically for the plotting of ternary diagrams . ternary diagrams are baycentric plots w/ three variables, and, they are commonly used within the fields of chemistry, petrology, mineralogy, metallurgy, materials-science, genetics and game-theory, amongst others. whereas a simplex diagram is the general case for , in dimensions, the ternary diagram is the specific case when (producing vertices). with the exception of the work by sean mulcahy [ 2 ] and darren wilkinson [ 3 ], there are very few resources on the internet where ggplot2 [ 1 ] has been used as a platform for rendering such diagrams, ggtern attempts to bridge this gap, and has since been used within a number of publications as a direct result. if you are familiar with the syntax of ggplot2, then using ggtern should be a breeze, without too much trouble, it is quite easy to produce publication quality ternary diagrams such as the one immediately below: references [1] h. wickham, ggplot2: elegant graphics for data analysis , springer-verlag, 2009. [bibtex] @book{wickham, title = {ggplot2: elegant graphics for data analysis}, author = {wickham, hadley}, publisher = {springer-verlag}, year = {2009}, owner = {nick hamilton}, timestamp = {20131123} } [2] s. r. mulcahy, “ternary plots in r.” [bibtex] @electronic{mulcahy, title = {ternary plots in r}, author = {mulcahy, s.r.}, howpublished = {website}, language = {english}, url = {http://srmulcahy.github.io/2012/12/04/ternary-plots-r.html}, owner = {nick hamilton}, timestamp = {20131222} } [3] d. wilkinson, “ternary plots in ggplot/r.” [bibtex] @electronic{wilkinson, title = {ternary plots in ggplot/r}, author = {wilkinson, d.}, howpublished = {website}, language = {english}, url = {http://wilkinsondarren.wordpress.com/2013/09/10/ternary-plots-in-ggplotr/}, owner = {nick hamilton}, timestamp = {20131222} } comments bastian 6/11/2015 | 9:05 nick, thanks a lot for this r package. it is fantastic. i have been using your package for the last five years now and use it a lot for my work. thanks reply nicholas hamilton 7/11/2015 | 10:53 no problem bastian, great to hear this kind of feedback. cheers. reply scott 2/03/2016 | 12:24 wonderful package – is there any way to combine the plot with a phase diagram graphic within ggtern? something akin to this? reply nicholas hamilton 6/03/2016 | 10:29 not sure what you mean, can you provide an example? reply scott 12/03/2016 | 8:09 sorry, the link didn’t paste before – basically just a .png or other image graphic underneath the ggtern diagram. here is the link again: https://www.researchgate.net/figure/270664107_fig17_feo-al2o3-sio2-ternary-diagram-after-muan-1957-the-baojia-slag-samples-mostly-plot-in reply nicholas hamilton 18/03/2016 | 8:48 it would be tricky to overlay, however, there is nothing stopping the entire phase diagram being drawn in ggtern…. if you have the time…. reply nicholas hamilton 21/03/2016 | 12:19 scott, the working version (v2.1.1) currently on my bitbucket account has a new geometry for including raster images. actually this was quite a bit easier than i had thought. here is an example: example raster r data(feldspar) data(feldsparraster) ggtern(feldspar,aes(ab,an,or)) + theme_rgbw() + annotation_raster_tern(feldsparraster,xmin=0,xmax=1,ymin=0,ymax=1) + geom_mask() + geom_point(size=5,aes(shape=feldspar,fill=feldspar),color='black') + scale_shape_manual(values=c(21,24)) + labs(title="demonstration of raster annotation") 1 2 3 4 5 6 7 8 9 data ( feldspar ) data ( feldsparraster ) ggtern ( feldspar , aes ( ab , an , or ) ) + theme_rgbw ( ) + annotation_raster_tern ( feldsparraster , xmin = 0 , xmax = 1 , ymin = 0 , ymax = 1 ) + geom_mask ( ) + geom_point ( size = 5 , aes ( shape = feldspar , fill = feldspar ) , color = 'black' ) + scale_shape_manual ( values = c ( 21 , 24 ) ) + labs ( title = "demonstration of raster annotation" ) until i make another update to cran, you will need to clone the git repo and install from source. reply scott 26/03/2016 | 6:00 that’s awesome! thanks so much for that – this is such a great package. thanks for putting it out there. reply scott 27/03/2016 | 2:22 quick follow up question – since this is just for raster images (annotation_raster instead of annotation_custom), is there a way to scale the image to fit the parameters of the ternary diagram? ordinarily, i’d use a grob and set the lims to inf to get it to auto-scale using annotation_custom. is that possible with the adjustments you’re made using just raster images? at the moment i have a beautiful phase diagram behind my data points, but the image is ~75% the size of the ggtern plot. reply nicholas hamilton 12/04/2016 | 7:01 scott, you need to tweak the xmin, xmax, ymin, ymax values. basically, if you use an image which has no whitespace external to the bounding rectangle defined by the three apexes, then xmin = 0, xmax = 1, ymin = 0, ymax = 1 should place the image correctly. max 7/04/2016 | 8:42 i’m just found this, but are you able to make contours similar to a response surface mixture design of experiment (e.g. minitab)? if so that would be great to implement in a real doe package for chemists and chemes reply nicholas hamilton 11/04/2016 | 12:55 max, can you post an example of what you mean please? reply fin 17/08/2018 | 8:18 i would also love to see an implementation of a ternary, or better n-dimensional, response surface plot. the response surface methodology is useful for finding the optimal component or process combinations. an example of this kind of ternary response surface plot is here: https://goo.gl/images/m9qsn8 reply gunnar 6/05/2016 | 4:49 hey nicholas, this is an awesome package! i’m using it to create plots for a scientific artictle right now. however, it seems that i came across an error: i have a plot where i need the grid lines on top, so i’m using the “theme_gridsontop()” option (or tern.panel.grid.ontop = true in theme options). but when i do this, the axis labels don’t get plotted anymore! if i remove that option, the labels are plotted just fine. here is an example plot that shows you what i mean – i can only get the left or the right version, not both – but i have been able to create plots with both options before. reply nicholas hamilton 4/08/2016 | 1:07 try upgrading, works fine for me, may be a bug in a previous version, i recently re-worked all the axis-rendering routines. example gridsontop r df = as.data.frame(diag(1,3,3)) base = ggtern(df,aes(v1,v2,v3)) + geom_polygon(fill='red') + theme_showarrows() base base + theme_gridsontop() 1 2 3 4 df = as . data . frame ( diag ( 1 , 3 , 3 ) ) base = ggtern ( df , aes ( v1 , v2 , v3 ) ) + geom_polygon ( fill = 'red' ) + theme_showarrows ( ) base base + theme_gridsontop ( ) reply marina reback 11/08/2016 | 3:08 dear nicholas, thank you very much for the package! we are working with it, but applying to environmental data – sterols in sediments – in order to find something about where the organic matter comes from.we are from ufpr, a university in brazil. so, as beginners we find a lot of troubles! we could plot it, ok, very cool graphic!! b ut can’t find a way to label each dot , i.e. with its codes or sample numbers. tried it in many ways. i imagine this is a basic thing… but can’t achieve this. could you please provide us a basic script that could do that in a ternplot (label each data point) in order to use it as a guide? maybe you already have it done but could not find anywhere. thank you very much! best regards! reply nicholas hamilton 11/08/2016 | 11:30 maria, sure, try the following, where there are two (2) methods of labelling demonstrated: example labelling r #variabels set.seed(1) n = 10; #number of data points nv = 0.05 #vertical adjustment #define data df = data.frame(x = runif(n), y = runif(n), z = runif(

URL analysis for ggtern.com


http://www.ggtern.com/?replytocom=20393#respond
http://www.ggtern.com/?replytocom=18342#respond
http://www.ggtern.com/?replytocom=21865#respond
http://www.ggtern.com/2016/04/
http://www.ggtern.com/?replytocom=18037#respond
http://www.ggtern.com/tag/cran/
http://www.ggtern.com/?replytocom=19944#respond
http://www.ggtern.com/?replytocom=18111#respond
http://www.ggtern.com/category/posts/help/
http://www.ggtern.com/privacy-policy/
http://www.ggtern.com/tag/featured/
http://www.ggtern.com/?replytocom=17988#respond
http://www.ggtern.com/posts/
http://www.ggtern.com/?replytocom=19870#respond
http://www.ggtern.com/?replytocom=12063#respond
mightystacy.blogspot.co.uk

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Domain Name: GGTERN.COM
Registry Domain ID: 1838252843_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2018-02-14T03:52:48Z
Creation Date: 2013-12-07T04:13:21Z
Registry Expiry Date: 2018-12-07T04:13:21Z
Registrar: NameCheap Inc.
Registrar IANA ID: 1068
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.6613102107
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.DREAMHOST.COM
Name Server: NS2.DREAMHOST.COM
Name Server: NS3.DREAMHOST.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2018-10-17T19:25:23Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.

TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.

The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.

  REGISTRAR NameCheap Inc.

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =ggtern.com

  PORT 43

  TYPE domain

DOMAIN

  NAME ggtern.com

  CHANGED 2018-02-14

  CREATED 2013-12-07

STATUS
clientTransferProhibited https://icann.org/epp#clientTransferProhibited

NSERVER

  NS1.DREAMHOST.COM 64.90.62.230

  NS2.DREAMHOST.COM 208.97.182.10

  NS3.DREAMHOST.COM 66.33.205.230

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.uggtern.com
  • www.7ggtern.com
  • www.hggtern.com
  • www.kggtern.com
  • www.jggtern.com
  • www.iggtern.com
  • www.8ggtern.com
  • www.yggtern.com
  • www.ggternebc.com
  • www.ggternebc.com
  • www.ggtern3bc.com
  • www.ggternwbc.com
  • www.ggternsbc.com
  • www.ggtern#bc.com
  • www.ggterndbc.com
  • www.ggternfbc.com
  • www.ggtern&bc.com
  • www.ggternrbc.com
  • www.urlw4ebc.com
  • www.ggtern4bc.com
  • www.ggternc.com
  • www.ggternbc.com
  • www.ggternvc.com
  • www.ggternvbc.com
  • www.ggternvc.com
  • www.ggtern c.com
  • www.ggtern bc.com
  • www.ggtern c.com
  • www.ggterngc.com
  • www.ggterngbc.com
  • www.ggterngc.com
  • www.ggternjc.com
  • www.ggternjbc.com
  • www.ggternjc.com
  • www.ggternnc.com
  • www.ggternnbc.com
  • www.ggternnc.com
  • www.ggternhc.com
  • www.ggternhbc.com
  • www.ggternhc.com
  • www.ggtern.com
  • www.ggternc.com
  • www.ggternx.com
  • www.ggternxc.com
  • www.ggternx.com
  • www.ggternf.com
  • www.ggternfc.com
  • www.ggternf.com
  • www.ggternv.com
  • www.ggternvc.com
  • www.ggternv.com
  • www.ggternd.com
  • www.ggterndc.com
  • www.ggternd.com
  • www.ggterncb.com
  • www.ggterncom
  • www.ggtern..com
  • www.ggtern/com
  • www.ggtern/.com
  • www.ggtern./com
  • www.ggternncom
  • www.ggternn.com
  • www.ggtern.ncom
  • www.ggtern;com
  • www.ggtern;.com
  • www.ggtern.;com
  • www.ggternlcom
  • www.ggternl.com
  • www.ggtern.lcom
  • www.ggtern com
  • www.ggtern .com
  • www.ggtern. com
  • www.ggtern,com
  • www.ggtern,.com
  • www.ggtern.,com
  • www.ggternmcom
  • www.ggternm.com
  • www.ggtern.mcom
  • www.ggtern.ccom
  • www.ggtern.om
  • www.ggtern.ccom
  • www.ggtern.xom
  • www.ggtern.xcom
  • www.ggtern.cxom
  • www.ggtern.fom
  • www.ggtern.fcom
  • www.ggtern.cfom
  • www.ggtern.vom
  • www.ggtern.vcom
  • www.ggtern.cvom
  • www.ggtern.dom
  • www.ggtern.dcom
  • www.ggtern.cdom
  • www.ggternc.om
  • www.ggtern.cm
  • www.ggtern.coom
  • www.ggtern.cpm
  • www.ggtern.cpom
  • www.ggtern.copm
  • www.ggtern.cim
  • www.ggtern.ciom
  • www.ggtern.coim
  • www.ggtern.ckm
  • www.ggtern.ckom
  • www.ggtern.cokm
  • www.ggtern.clm
  • www.ggtern.clom
  • www.ggtern.colm
  • www.ggtern.c0m
  • www.ggtern.c0om
  • www.ggtern.co0m
  • www.ggtern.c:m
  • www.ggtern.c:om
  • www.ggtern.co:m
  • www.ggtern.c9m
  • www.ggtern.c9om
  • www.ggtern.co9m
  • www.ggtern.ocm
  • www.ggtern.co
  • ggtern.comm
  • www.ggtern.con
  • www.ggtern.conm
  • ggtern.comn
  • www.ggtern.col
  • www.ggtern.colm
  • ggtern.coml
  • www.ggtern.co
  • www.ggtern.co m
  • ggtern.com
  • www.ggtern.cok
  • www.ggtern.cokm
  • ggtern.comk
  • www.ggtern.co,
  • www.ggtern.co,m
  • ggtern.com,
  • www.ggtern.coj
  • www.ggtern.cojm
  • ggtern.comj
  • www.ggtern.cmo
Show All Mistakes Hide All Mistakes