ROOT
6.10/00
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
Namespaces
All Classes
Files
Release Notes
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
bindings
r
src
TRDataFrame.cxx
Go to the documentation of this file.
1
/*************************************************************************
2
* Copyright (C) 2013-2015, Omar Andres Zapata Mesa *
3
* All rights reserved. *
4
* *
5
* For the licensing terms see $ROOTSYS/LICENSE. *
6
* For the list of contributors see $ROOTSYS/README/CREDITS. *
7
*************************************************************************/
8
#include<
TRDataFrame.h
>
9
10
11
using namespace
ROOT::R
;
12
13
//______________________________________________________________________________
14
TRDataFrame::TRDataFrame
():
TObject
()
15
{
16
df
= Rcpp::DataFrame::create();
17
}
18
19
//______________________________________________________________________________
20
TRDataFrame::TRDataFrame
(
const
TRDataFrame
&_df):
TObject
(_df)
21
{
22
df
= _df.
df
;
23
}
24
25
//______________________________________________________________________________
26
TRDataFrame::Binding
TRDataFrame::operator[]
(
const
TString &
name
)
27
{
28
return
Binding
(
df
, name);
29
}
ROOT::R::TRDataFrame::operator[]
Binding operator[](const TString &name)
Definition:
TRDataFrame.cxx:26
Binding
void Binding()
Definition:
Binding.C:21
ROOT::R::TRDataFrame::df
Rcpp::DataFrame df
Definition:
TRDataFrame.h:181
TRDataFrame.h
ROOT::R::TRDataFrame::TRDataFrame
TRDataFrame()
Default TDataFrame constructor.
Definition:
TRDataFrame.cxx:14
TObject
Mother of all ROOT objects.
Definition:
TObject.h:37
ROOT::R::TRDataFrame::Binding
Definition:
TRDataFrame.h:184
R
TRandom3 R
a TMatrixD.
Definition:
testIO.cxx:28
name
char name[80]
Definition:
TGX11.cxx:109
ROOT::R::TRDataFrame
This is a class to create DataFrames from ROOT to R
Definition:
TRDataFrame.h:177