* Jerry Friedman <7a01627b-cde4-4ce2-922e-98a15f669990n @
googlegroups.com> :
Wrote on Thu, 27 Jan 2022 11:33:12 -0800 (PST):
> Some people would agree with you. Whether "because" in "because I
> said so" is a "conjunctive adverb" or a "subordinating conjunction" or
> something else, and whether "But it can" is a complete sentence or
> not, are just matters of terminology.
On the matter of frequency,
# total lines in my copy of the KJV
egrep '^[0-9]+:[0-9]+ ' * | wc -l => 31102
# number of lines beginning with "And"
egrep '^[0-9]+:[0-9]+ And' * | wc -l => 11609
That's 37.32% of all numbered verses that begin with And.
# number of lines beginning with "But"
egrep '^[0-9]+:[0-9]+ But' * | wc -l => 1456
That's 4.68% of all numbered verses
Now for "full sentences beginning with a capitalised word and ending
with a full stop"
# number the lines beginning with And and ending with a full stop.
egrep '^[0-9]+:[0-9]+ And.*\.$' * | wc -l => 9087
29.22% of all lines, 78% of all lines beginning with And.
# number the lines beginning with And and ending with a full stop.
egrep '^[0-9]+:[0-9]+ But.*\.' * | wc -l => 1178
3.78% of all lines, 80% of lines beginning with But.
The number of sentences begininng with Because and ending with a
fullstop: 83
Now a sentence is of the form "because A ; because B", I submit that it
automatically becomes complete ( because A and B support each other)