INTRODUCTION
The fields of detrital geochronology and thermochronology aim to identify the timing of crystallization and cooling of individual detrital mineral grains, respectively, with application to understanding both solid‐earth (tectonic) and earth surface processes (Fedo, Sircombe, & Rainbird, ; Gehrels, ; Reiners & Brandon, ). Technological improvements over the last several decades, particularly in laser ablation‐inductively coupled plasma‐mass spectrometry (LA‐ICP‐MS), have led to greater efficiency in collecting detrital geochronologic data (Gehrels, ), and to a lesser extent thermochronologic data (Horne, van Soest, Hodges, Tripathy‐Lang, & Hourigan, ). Although many detrital mineral types are used in geo‐thermochronology, U‐Pb and (U‐Th)/He dating of detrital zircon (DZ) has emerged as a primary tool for constraining sediment provenance, refining palaeogeographic and tectonic interpretations, and constraining the depositional age of stratigraphic sequences (Fedo et al., ; Gehrels, ). Termed the “DZ Revolution” (Gehrels, ), the number of scientific articles, including peer‐reviewed publications and conference abstracts, published per year that contain the phrase “detrital zircon” in the title has increased from ca 14 per year during the early 1990s to nearly 600 in 2016 (Figure a). During this time period, both the number of grain analyses per sample and the total number of samples per study has also increased (Figure a), resulting in an ever‐expanding number of geo‐thermochronologic data points.
(a) The number of published studies per year, including peer‐reviewed articles and conference abstracts, that contain the phrase “detrital zircon” in the title (based on a GeoRef database search, August 2017; see also Gehrels, ; fig. ). Blue and red lines demarcate the average number of samples and analyses per sample, respectively, for published studies from each calendar year (2009 data and earlier from Voice et al. (); 2010 data and later years from an unpublished compilation of ca 120,000 DZ U‐Pb ages, mostly from North America). (B) An approximate estimate of the total (cumulative) number of published DZ U‐Pb analyses from 1990 to 2016. This estimate was derived from multiplying the number of published studies by the average number of samples and average number of analyses per sample for each calendar year (part a)
How many individual DZ geochronologic analyses have been collected within the past 20 years? Voice, Kowalewski, and Eriksson () and Puetz, Ganade, Zimmermann, and Borchardt () compiled ca 200,000 and ca 260,000 individual DZ U‐Pb ages, respectively, but these compilations are probably a small fraction of the total that has been collected. Back‐of‐the‐envelope calculations suggest a conservative estimate of several million or more published U‐Pb analyses of DZ alone (Figure b). This is probably a conservative estimate as not all articles that publish detrital geochronologic data contain the exact phrase “detrital zircon” in their title, and this estimate does not include unpublished data. The trend towards a large‐n sampling strategy (Daniels et al., ; Pullen, Ibáñez‐Mejía, Gehrels, Ibáñez‐Mejía, & Pecha, ) suggests that the quantity of detrital geochronologic data will continue to increase at a rapid pace. Although detrital thermochronologic datasets are typically smaller than their geochronologic counterparts, as a result of greater effort and expense of data collection, ongoing advances in He‐dating using laser ablation shows promise in increasing the future quantity of detrital thermochronometric data (Horne et al., ).
The proliferation of detrital geo‐thermochronologic data provides an opportunity for researchers to leverage published data in interpreting their own datasets (Gehrels, ). Yet efficient management and analysis of such quantities of data can make even common tasks difficult, such as (a) selecting samples for comparison, (b) combining samples into groups, and (c) assessing the similarity and/or dissimilarity between samples or groups of samples (e.g. multi‐dimensional scaling; Vermeesch, ). A number of analytical and visualization tools have been developed for working with detrital geo‐thermochronologic data, including Isoplot (Ludwig, ), Excel‐based macros from the Arizona LaserChron Center, DZStats (Saylor & Sundell, ), DZMix (Sundell & Saylor, ), and a number of tools developed by Pieter Vermeesch and his colleagues including Density Plotter (Vermeesch, ), MuDiSc (Vermeesch, ), and the R provenance package (Vermeesch, Resentini, & Garzanti, ).
detritalPy, a Python 3‐based toolset presented herein, supplements these existing tools by allowing efficient visualization and analysis of large detrital geochronologic and thermochronologic datasets. The following sections provide an overview of the data format required by detritalPy and an explanation of its visualization and analysis tools. Additional explanation is provided in the detritalPy manual (see Supporting Information) and within commented lines within the Python code itself (
DATA STRUCTURE
detritalPy requires input data to be structured by sample and detrital analysis (Figure ). Samples must contain a unique alphanumeric identifier (e.g. “11‐Escanilla”; Figure ) and each sample must have at least one detrital analysis. The default data input format is a Microsoft Excel spreadsheet with two worksheets. (a) A “Samples” worksheet contains a row for each unique sample in the dataset. This worksheet can optionally contain other sample information (e.g. latitude and longitude coordinates). (b) An “ZrUPb” worksheet contains a row for each unique detrital analysis in the dataset, in this case zircon U‐Pb and (U‐Th)/He ages. Each analysis must be linked with a sample by its unique sample identifier (i.e. “11‐Escanilla”, Figure ). Each analysis must have at least one detrital age with an associated analytical uncertainty (1‐ or 2‐sigma). If multiple detrital analyses are from the same grain (e.g. rim and core analyses), then a unique grain identifier can be used (e.g. “7_Guaso_81”; Figure b). The “ZrUPb” worksheet can optionally contain other information related to the detrital analysis (e.g. U concentration or Th/U).
Example of the default data structure used by detritalPy. (a) A “Samples” worksheet contains a required “Sample_ID” column and additional optional columns. (b) An “ZrUPb” worksheet contains required “Sample_ID”, “BestAge”, and “BestAge_err” columns. Additional columns are required for some plotting and analysis functions (e.g. “U_ppm”). Example data are included as supporting information
DATA LOADING AND SAMPLE SELECTION
Data can be loaded into detritalPy by simply specifying the file pathway and file name and extension (Figure a). If data are present in multiple spreadsheets, these can be imported simultaneously and will be merged together, provided that there is no duplication of data and that both spreadsheets use the same column heading names. A histogram of the number of grains per sample can be optionally plotted (Figure a).
(a) Example code that illustrates how to import required libraries, load data in two separate Excel files, and plot a histogram of the distribution of analyses per sample. (b) Example code that illustrates how to select one or more individual sample(s) (above) or sample group(s) (below) for plotting and analysis
Samples can be selected for plotting and/or analysis via one of two options: (a) one or more individual samples can be specified by listing each unique sample identifier in an array, (b) one or more groups of samples can be specified by listing the sample identifiers that make up each group in an array, followed by an alphanumeric name for the group, all contained within a tuple data structure (Figure b).
DETRITALPY FUNCTIONS
The visualization and analysis functions included with detritalPy are described below. All functions can be modified to fit the user's requirements by modifying the source code within the included detritalFuncs library. Additional information for each of the following functions is provided within the detritalPy manual (see Supporting Information) and within commented lines within the Python code itself.
Plot detrital age distributions
Detrital age distributions can be plotted for individual samples or sample groups using the most popular visualization types, including cumulative distributions, relative probability distributions, histograms and pie diagrams (Figure ). There is no limit to the number of samples or sample groups that can be plotted. The plot is divided into two parts. (a) An upper subplot contains superimposed cumulative distributions for each sample or sample group. (b) One or more lower subplot(s) includes relative probability distributions, histograms, and pie diagrams, if selected to be plotted. Each sample or sample group will be plotted in the order that the unique sample identifiers are listed. If the ‘separateSubplots’ variable is set to True, then each sample or sample group will be plotted in a separate subplot (Figure ). The y‐axes of the subplots will have the same scale (i.e. normalized) if the ‘normPlots’ variable equals True (Figure ). If the ‘separateSubplots’ variable equals False, then each normalized distribution (for a sample or sample group) will be vertically stacked within a single subplot (Figure ). However, histograms and pie diagrams cannot be plotted if ‘separateSubplots’ equals False.
Examples of plotted detrital age distributions. (a) Cumulative distribution function binned at 1 Myr increments. The notation N = (X, Y/Z) indicates the number of samples (X), the number of analyses visible in the plotted age range (Y), and the total number of analyses (Z). (b) Cumulative probability density plot (CPDP). (c) Histogram with 5 Myr bins. (d) Probability density plot (PDP). (e) Kernal density estimate (KDE) using a 3 Myr bandwidth (b.w.). (f) A combination plot with a superimposed histogram, PDP, and KDE. The PDP and pie diagram are coloured according to user‐defined age categories, from Sharman et al. ()
Three options for plotting relative probability distributions (PDP or KDE). (a) Equally sized subplots that are allowed to have different y‐axis scales. (b) Equally sized subplots that all have the same y‐axis scale (i.e. normalized). (c) Distributions are stacked on top of each other and all have the same y‐axis scale (i.e. normalized)
Two types of relative probability distributions can be plotted. Probability density plots (PDPs) are probability distributions constructed from summing a Gaussian distribution for each analysis and normalizing the distribution such that its integral equals 1, where the mean and standard deviation of each summed Gaussian distribution is equal to the age and 1σ analytical uncertainty of the analysis (Vermeesch, ). Kernal density estimations (KDEs) are constructed in a similar manner to PDPs, except that a bandwidth is used for the standard deviation of each Gaussian, rather than the 1σ analytical uncertainty (Vermeesch, ). Although the PDP lacks a solid theoretical foundation and has been criticized as a visualization approach for detrital age distributions (Vermeesch, , ), this option is included as the PDP continues to be widely used by the detrital geochronology community. Cumulative PDPs and/or KDEs can be also be plotted (e.g. Figure b).
Three options for colouring relative probability distributions have been included: (a) solid colouration that fills the area under the age distribution and that matches the line colour of the cumulative distribution, if selected for plotting (e.g. Figure ), (b) age‐dependent colouration that fills the area under the relative age distribution and that correspond to user‐defined detrital age categories (e.g. Figure f), and (c) vertical, coloured bars that correspond to user‐defined age categories. The user‐specified age categories and colours can also be used to plot pie diagrams (Figure f).
Detrital age distributions shown as a CKDEs (top) and KDEs (bottom) for four sample groups (using a bandwidth of 1.5 Myr). CKDE and KDE are coloured by sample group, allowing easy visual comparison of cumulative and relative age distributions
Plot rim age versus core age
Some detrital grains contain younger mineral growth (i.e. a rim) over an older core. Rim versus core age relationships can be plotted provided that (a) grains are identified with a unique alphanumeric label (e.g. “7_Guaso_81”), and (b) “Rim” and “Core” designations are included in a “RimCore” column (Figure b). Figure presents an example plot of rim versus core age from the Ainsa Basin of the Spanish Pyrenees (data from Thomson et al., ). Data points are automatically coloured according to either the sample or sample group, and error bars can be plotted, optionally.
Illustration of rim age versus core age relationships (data from Thomson et al., ). Data symbols are coloured by sample
Plot detrital age distributions in comparison to another variable (e.g. Th/U)
Geochemical attributes of detrital minerals can provide additional insight into sedimentary provenance and/or the petrogenesis of source rocks (Barth, Wooden, Jacobson, & Economos, ; Colgan & Stanley, ; Malkowski & Hampton, ). For detrital zircon, concentrations of U and Th are routinely measured in LA‐ICP‐MS. Increasingly, the abundances of other trace and rare‐earth elements and Hf isotopes are also analysed (Gehrels, ). Detrital U‐Pb ages can be plotted in comparison to any other numeric variable in the “ZrUPb” worksheet (e.g. the concentration of U or ratio of Th to U; Figure b) to assess changes in this variable with respect to the age of the detrital mineral (Figure ). Error bars can be plotted optionally; error can either be specified as a percentage or as the column heading that contains the variable error data. The option is also provided to plot a moving average of a specified window size (Figure ).
Illustration of plotting detrital U‐Pb age distributions versus another analysis variable (Th to U ratio) for the Point of Rocks Sandstone and Butano Sandstone sample groups (see Figure ). The red line depicts a 15 point moving average across Th/U data points. Note elevated Th/U ratios in Jurassic zircon ages from the Butano Sandstone
Plot detrital age populations as a bar graph
Bar graphs can provide a useful visualization of how detrital ages vary between samples or sample groups (Sharman et al., ; their Figure ), with the caveat that such plots involve subjective selection of bin boundaries that may over‐simplify complex age distributions. detritalPy allows age proportions to be plotted as one or more bar graphs, using user‐specified age categories and colours (Figure ). If plotting sample groups, setting the variable ‘separateGroups’ to True results in plot(s) with the age proportions for individual samples in each group (Figure b). Otherwise, the proportions will reflect all analyses within each group (Figure c).
Bar graphs showing the relative proportions of user specified age categories (see Figure ). (a) Individual samples. (b) Individual samples plotted by sample group. (c) Combined data for sample groups. See Figure for the Point of Rocks (POR) Sandstone and Butano Sandstone sample groups
Plot sample locations on an interactive map
Samples with latitude and longitude coordinates can be plotted on an interactive map, provided that the folium library has been installed (
Examples of the Butano Sandstone (red) and Point of Rocks Sandstone (green) sample locations plotted on an interactive map (ESRI ‘World_Topo_Map’). (a) Wide view showing all 8 samples coloured according to group. Clicking on a sample results in a pop‐up window with the sample name. (b) Zoomed in view showing detail around sample BUT‐5
Plot and export maximum depositional age (MDA) calculations
The youngest DZ U‐Pb ages provide an estimate of the maximum depositional age (MDA) of a detrital sample (Dickinson & Gehrels, ; Fedo et al., ). An automated approach is provided to calculating the MDA of one or more sample(s) or sample group(s) using three ad hoc metrics used by Dickinson and Gehrels (). (a) The youngest single grain, YSG, assigns the MDA as the youngest detrital analysis (Figure ). The YSG is defined by sorting all analyses by their U‐Pb age plus 1σ uncertainty, and selecting the first analysis. Thus, it is possible to have a younger, but less precise, age than the YSG as defined herein. (b) The youngest cluster of 2 or more ages with overlapping 1σ uncertainties, YC1σ(2+), has the advantage of not relying on a single analysis that could be affected by lead loss or other analytical problems (Dickinson & Gehrels, ). The YC1σ(2+) is defined by sorting all analyses by their U‐Pb age plus 1σ uncertainty, and identifying the youngest cluster of analyses with overlapping 1σ error (Figure ). (c) The youngest cluster of three or more ages with overlapping 2σ uncertainties, YC2σ(3+), provides a more conservative, but typically older, estimate of the MDA than the other two metrics (Dickinson & Gehrels, ). The YC2σ(3+) is defined by sorting all analyses by their U‐Pb age plus 2σ uncertainty, and identifying the youngest cluster of 3 or more analyses with overlapping 2σ error (Figure ). A spreadsheet with all MDA calculation results is exported automatically.
Example of maximum depositional age (MDA) calculations for sample POR‐2. See text for details
The MDA calculations can be optionally plotted for each sample or sample group selected (Figure ). Only the grain ages that are used in at least one of the three MDA calculations will be included. Analyses can be arranged by their mean age, mean age plus 1‐sigma analytical uncertainty, or mean age plus two‐sigma analytical uncertainty. Additional plot parameters can be used to change the appearance of the plot, including its dimensions, the width of the bars, and colours to use for the different MDA calculations.
Multi‐dimensional scaling
Multi‐dimensional scaling (MDS) has become a popular approach for visual assessment of the degree of similarity and dissimilarity between detrital geochronologic samples (Saylor et al., ; Vermeesch, ). MDS plots for samples or sample groups can be created in detritalPy using the sklearn library with the option for either metric or non‐metric MDS (Figure ). Following Vermeesch () and Saylor et al. (), MDS calculations can be based on the maximum separation between cumulative distribution functions (CDF) (Kolgomorov–Smirnov Dmax) or the sum of the maximum differences between two CDFs (i.e. CDF1‐CDF2 and CDF2‐CDF1; Kupier Vmax). The option is provided to plot data points as pie diagrams, using user‐specified age categories and colours. Visualizing MDS plots using pie diagrams can help with interpreting the spatial distribution of samples on an MDS plot (Figure ).
Multi‐dimensional scaling (MDS) plots. Axes are dimensionless Dmax distances (see Vermeesch, for additional explanation). (a) Individual samples. (b) Sample groups
(U‐Th)/He versus U‐Pb age “double dating” plot
Grains with both U‐Pb crystallization and (U‐Th)/He cooling ages can be plotted against each other in a ‘double dating’ plot (Thomson et al., ). The main portion of the plot contains a scatter plot, with grey shading within the region where the cooling age is older than the crystallization age (Figure ). Separate subplots on the x‐ and y‐axis show the relative probability distribution (PDP and/or KDE) of the U‐Pb and (U‐Th)/He age distributions respectively (Figure ). Histograms can be plotted, optionally.
(U‐Th)/He versus U‐Pb ‘double dating’ plot. PDPs are shown in subplots to the bottom and right of the scatterplot. Data from Thomson et al. ()
Export sample comparison matrices as a CSV file
A number of metrics have been proposed to evaluate the similarity or dissimilarity between detrital age distributions (Saylor & Sundell, ; and references within), although the use of some metrics (e.g. likeness, cross‐correlation) has recently been discouraged (Vermeesch, ). Sample comparison matrices for samples or sample groups can be exported to a CSV file, including similarity, likeness, the Kolgomorov–Smirnov statistic Dmax and p‐value, the Kuiper statistic Vmax, and the cross‐correlation (r2) coefficient of either the PDP or KDE. Similarity, likeness, and r2 coefficient values are based on selection of either the PDP or KDE distribution, and when based upon the KDE, will depend on choice of a bandwidth.
Export detrital age distributions as a CSV file
Raw detrital age distributions (either cumulative or relative) can be exported as a CSV file. The age range and discretization interval can be specified. If the variable ‘normalize’ equals True, the distribution(s) will be forced to sum to 1. Exported age distributions can be used as inputs for more advanced analytical procedures (e.g. sediment unmixing; Sharman & Johnstone, ).
Export ages and errors in tabular format as a CSV file
To promote compatibility with other software, detritalPy includes the option to export a CSV file containing U‐Pb ages and 1σ uncertainties for any number of samples or sample groups. U‐Pb ages are automatically sorted from youngest to oldest, and listed in adjacent columns, the format required by many existing tools (e.g. Arizona LaserChron Center Excel worksheets).
DISCUSSION
KDE bandwidth selection
Selection of an appropriate KDE bandwidth is important for avoiding over‐smoothing or under‐smoothing detrital age distributions (Saylor & Sundell, ; Vermeesch, ). detritalPy offers three options for KDE bandwidth selection. The bandwidth can be specified by the user in units of Myr. Alternatively, the bandwidth can be automatically selected by an algorithm that attempts to select an optimized value (Shimazaki & Shinomoto, ) using either a fixed or variable bandwidth (Figure ), as implemented through the adaptivekde library (
Illustration of the influence of KDE bandwidth selection on plot appearance. (a) Single sample from the Morrison Formation of central Colorado (Sharman et al., in press). (b) Large data compilation of samples mostly from North America
To consider the influence of KDE bandwidth selection on the appearance of detrital age distributions, two end‐member cases are considered: a single sample from the Morrison Formation of central Colorado (149 analyses; Sharman, Stockli, Flaig, Raynolds, & Covault, in press) and a large compilation of 1,308 samples (120,968 analyses) that are mostly from North American continent (Figure ). Application of the Shimazaki and Shinomoto () algorithm to the single sample yields an optimized, fixed bandwidth of 17.8 Myr. This bandwidth selection appears to yield an acceptable match with the histogram over much of the age range of the detrital analyses, but over‐smooths the youngest, Jurassic age peak (Figure a). Use of a narrower bandwidth (e.g. 5 Myr) results in better reproduction of the Jurassic age peak, and greater similarity to the PDP, but appears to under‐smooth the older Palaeozoic and Proterozoic age peaks (Figure a). Although the optimized, variable bandwidth (Shimazaki & Shinomoto, ) is able to better reproduce the precision of the young, Jurassic peak, it appears to over‐smooth the older age components. For the large data compilation, the differences in appearance between the PDP and different KDE bandwidths are less than with the single sample (Figure b). The optimized, fixed bandwidth (2.1 Myr) yields a result that closely resembles the PDP, 5 Myr bandwidth, and optimized, variable bandwidth plots (Figure b). However, the 10 Myr and 20 Myr bandwidths appear to over‐smooth the Mesozoic‐Cenozoic age populations (Figure b).
It is suggested here that the selection of a KDE bandwidth, whether user‐defined or based on an optimized routine (Botev, Grotowski, & Kroese, ; Shimazaki & Shinomoto, ), will ultimately depend upon the nature of the age distributions themselves and the intended purpose of the display, with the decision having the greatest impact on plotted distributions with low numbers of analyses. Plots comprised of a relatively small number of detrital analyses may typically require larger bandwidths to avoid under‐smoothing regions of sparse data while also tending to over‐smooth young, precise age peaks (Figure a). This issue may be partially alleviated by plotting young and old detrital analyses separately, using different bandwidths for each (Sharman et al., in press). Plots comprised of large numbers of analyses, however, may benefit from selection of a smaller bandwidth (Figure b). Note that the choice of a KDE bandwidth has limited influence on the appearance of the cumulative (summed) KDE relative to the significant impact on the appearance of the KDE (Figure ).
Strengths of detritalPy
Although intended as a complement to rather than replacement of existing tools, detritalPy has a number of strengths that allow for efficient visualization and analysis of large detrital geo‐thermochronologic datasets:
- The code is executed in the open‐source (Python Software Foundation License) Python 3 language and is implemented using a user‐friendly Jupyter Notebook interface (Kluyver et al., ; Perez & Granger, ). Thus, detritalPy does not require the use of proprietary software (e.g. MathWorks Matlab). Although no significant coding knowledge is required, users have the option of modifying the code to create user‐customized functions and plots, which can be difficult with some existing tools that utilize a graphical user interface.
- All detritalPy functions are compatible with an unlimited number of samples, or sample groups, and samples can be selected without manipulation of data in spreadsheets. Samples can be selected via simple reference to the unique sample identifier (e.g. ‘Sample B’), and changes can be made on‐the‐fly. Thus, detritalPy eliminates the need to manually combine or organize data prior to plotting or analysis, beyond initial data organization (Figure ), helping to eliminate duplication of data in separate spreadsheets.
- Plotting and analysis functions are designed to allow maximum user flexibility in controlling the appearance and types of plots, following the most commonly used visualization and analytical approaches (Saylor & Sundell, ; Vermeesch, , ). Jupyter Notebooks are ideal for exploratory data analysis. Once the desired graphs have been created, plots can be exported in a vector‐friendly format, requiring little modification for publication‐quality figures.
- Data can be exported in the common format used by the majority of existing analytical and visualization tools, for use in other published software.
‘Big Data’ in detrital geochronology
The proliferation of detrital geo‐thermochronologic data within the last 20 years (Figure ) provides an opportunity for analysis within a ‘Big Data’ framework (Vermeesch & Garzanti, ). Yet development of an efficient means of visualizing and analysing large datasets remains a critical need in the detrital geo‐thermochronologic community (Gehrels, ). For example, the ability to easily create sample groups within detritalPy will facilitate construction of reference curves (Gehrels, Dickinson, Ross, Stewart, & Howell, ; Kimbrough et al., ) that can be compared with the magmatic and/or metamorphic history of known basement terranes (Dickinson & Gehrels, ) or with other detrital samples (Sharman, Covault, Stockli, Wroblewski, & Bush, ). The ability to quickly visualize and analyse related detrital geochronological and geochemical data also have relevance for characterization of source terranes, such as the magmatic flux of volcanic arc terranes (Ducea, ; Malkowski, Schwartz, Sharman, Sickmann, & Graham, ; Sharman et al., ).
detritalPy also provides improved functionality for querying and exploring geo‐thermochronologic data, particularly when combined with existing data repositories (e.g. the Geochron database;
CONCLUSIONS
detritalPy, a Python‐based approach to visualizing and analysing large detrital geo‐thermochron datasets, addresses a critical need for an efficient means of processing the rapidly expanding quantity of detrital mineral isotopic and geochemical data. detritalPy is implemented through a user‐friendly Jupyter Notebook interface and requires no significant coding expertise. However, the existing code can be modified to allow for user‐customized plots and analysis.
An unlimited number of samples can be either plotted individually or within groups. Functionality includes (a) plotting detrital U‐Pb age distributions using the most commonly employed visualization types, (b) plotting rim age versus core age, (c) comparing detrital age distributions to another variable (e.g. Th/U), (d) plotting age group proportions as a bar graph, (e) plotting sample locations on an interactive, zoomable map and exporting a Google Earth kml file, (f) calculating and visualizing maximum depositional ages, (g) multi‐dimensional scaling, (h) calculation of similarity and dissimilarity metrics (e.g. similarity, likeness, Kolgomorov–Smirnov statistic) and (i) exporting U‐Pb age and error data and age distributions as CSV files.
detritalPy has a number of advantages over existing tools, including not requiring proprietary software, offering flexibility in how data are plotted and analysed, and eliminating the need to manipulate data within spreadsheets to select which samples or groups of samples to plot. Furthermore, data can be easily exported from detritalPy in the common format required by most existing data visualization and analytical tools. It is expected that detritalPy will provide an important toolset for analysing detrital geochronologic and thermochronologic data within a ‘Big Data’ framework.
ACKNOWLEDGEMENTS
We would like to acknowledge coding assistance from Kevin Befus and Samuel Johnstone. Support for this research was provided by the industrial affiliate members of the Quantitative Clastics Laboratory at the Bureau of Economic Geology. We thank Joel Saylor and Pieter Vermeesch for constructive feedback in peer‐review.
You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. Show full disclaimer
Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. Hide full disclaimer
© 2018. This work is published under http://creativecommons.org/licenses/by/4.0/ (the “License”). Notwithstanding the ProQuest Terms and Conditions, you may use this content in accordance with the terms of the License.
Abstract
Detrital geochronology and thermochronology have emerged as primary methods of reconstructing the tectonic and surficial evolution of the Earth over geological time. Technological improvements in the acquisition of detrital geo‐thermochronologic data have resulted in a rapid increase in the quantity of published data over the past two decades, particularly for the mineral zircon. However, existing tools for visualizing and analysing detrital geo‐thermochronologic data generally lack flexibility for working with large datasets, hampering efforts to utilize the large quantity of available data.
You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. Show full disclaimer
Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. Hide full disclaimer
Details
1 Department of Geosciences, University of Arkansas, Fayetteville, Arkansas
2 Department of Computer Science, Rice University, Houston, Texas
3 Bureau of Economic Geology, Jackson School of Geosciences, The University of Texas at Austin, Austin, Texas