Below is a start at answering your question. Not knowing what you mean by "very long text" I had to just grab a bunch of text for my example. Take a look, and see the if some refining this may solve your issue.
names default to here(1);
dt = New Table( "Example",
Add Rows( 3 ),
Set Cell Height( 178 ),
New Column( "date",
Numeric,
"Continuous",
Format( "m/d/y", 10 ),
Input Format( "m/d/y" ),
Set Values( [3662582400, 3664396800, 3667075200] )
),
New Column( "Text",
Character,
"Nominal",
Set Values(
{
"This book describes the initial types of analyses that you often perform in JMP:
• The Distribution platform illustrates the distribution of a single variable using histograms, additional graphs, and reports. Once you know how your data is distributed, you can plan the appropriate type of analysis going forward. See Distributions.
• The Fit Y by X platform analyzes the pair of X and Y variables that you specify, by context, based on modeling type. See Introduction to Fit Y by X. The four types of analyses include:
– The Bivariate platform, which analyzes the relationship between two continuous X variables. See Bivariate Analysis.
– The Oneway platform, which analyzes how the distribution of a continuous Y variable differs across groups defined by a categorical X variable. See Chapter 6, “Oneway Analysis”.
– The Contingency platform, which analyzes the distribution of a categorical response variable Y as conditioned by the values of a categorical X factor. See Contingency Analysis.
– The Logistic platform, which fits the probabilities for response categories (Y) to a continuous X predictor. See Logistic Analysis.
• The Tabulate platform interactively constructs tables of descriptive statistics. See Tabulate.
• The Simulate feature provides parametric and nonparametric simulation capability. See Simulate.
• Bootstrap analysis approximates the sampling distribution of a statistic. The data is re-sampled with replacement and the statistic is computed. This process is repeated to produce a distribution of values for the statistic. See Bootstrapping.
• The Text Explorer platform enables you to categorize and analyze unformatted text data. You can use regular expressions to clean up the data before you proceed to analysis. See Text Explorer.",
"The Distribution platform illustrates the distribution of a single variable using histograms, additional graphs, and reports. The word univariate simply means involving one variable instead of two (bivariate) or many (multivariate). However, you can examine the distribution of several individual variables within a report. The report content for each variable changes depending on whether the variable is categorical (nominal or ordinal) or continuous.",
"The Bivariate platform shows the relationship between two continuous variables. It is the continuous by continuous personality of the Fit Y by X platform. The word bivariate simply means involving two variables instead of one (univariate) or many (multivariate).
The Bivariate analysis results appear in a scatterplot. Each point on the plot represents the X and Y values for a single observation; in other words, each point represents two variables. Using the scatterplot, you can see at a glance the degree and pattern of the relationship between the two variables. You can interactively add other types of fits, such as simple linear regression, polynomial regression, and so on."
}
)
)
);
dt<< set window size(1500,800);
dt:text << set Display Width(1200);
nw=new window("test",<<journal);
nw<<append(window("Example")<<get picture);
Jim